:root {
  --paragraph: #7987a1;
  --purple-dark-secondary: #180030;
  --primary: #8000ff;
  --white: white;
  --gray-light: #fafafa;
  --purple-light-secondary: #2b1343;
  --primary-light: #fbf7ff;
  --black: #171717;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@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(--paragraph);
  letter-spacing: -.05em;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

h1 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

h3 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1em;
}

h4 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

h5 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1em;
}

p {
  color: var(--paragraph);
  letter-spacing: -.05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

a {
  color: var(--primary);
  letter-spacing: -.05em;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: none;
  transition: all .3s;
}

a:hover {
  color: var(--purple-dark-secondary);
}

ul {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--primary);
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  color: var(--paragraph);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

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

blockquote {
  border-left: 5px solid var(--primary);
  color: var(--purple-dark-secondary);
  letter-spacing: -.05em;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

.pages-banner {
  background-color: #8000ff;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 80px;
  display: flex;
}

.base-container {
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.flex {
  align-items: center;
  display: flex;
}

.banner-title {
  color: #fff;
  text-align: center;
}

.line {
  background-color: #8000ff;
  width: 100%;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0%;
  right: 0%;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 0;
  display: flex;
}

.nav-container.white-background {
  background-color: #fff;
}

.nav-dropdown-column {
  grid-column-gap: 15px;
  width: 100%;
  display: flex;
}

.nav-dropdown-link {
  text-transform: capitalize;
  width: 100%;
  margin-left: -20px;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: #8000ff;
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: #8000ff;
}

.logo-header-image {
  width: 150px;
  max-width: 110%;
  height: 100%;
}

.button-primary {
  grid-column-gap: 50px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 16px 28px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
  display: none;
}

.button-primary:hover {
  border: 1px solid var(--primary);
  color: #180030;
  background-color: #fff;
}

.button-primary.header {
  z-index: 2;
  grid-column-gap: 30px;
  background-color: var(--primary);
  border: 0 rgba(0, 0, 0, 0);
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  height: 91px;
  transition-duration: .4s;
  display: flex;
  position: relative;
}

.button-primary.header:hover {
  background-color: #fff;
}

.button-primary.margin-top-button-large {
  margin-top: 60px;
  display: none;
}

.button-primary.margin-top-button {
  margin-top: 35px;
}

.button-primary.margin-gap {
  margin-left: 100px;
  margin-right: auto;
}

.button-primary.shrink {
  width: 100%;
}

.button-primary.margin-top-button-large {
  margin-top: 50px;
}

.nav-dropdown-toggle {
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 26px 18px;
  display: flex;
}

.burger-menu-button-wrap {
  display: none;
}

.button-text {
  font-weight: 500;
  line-height: 1em;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.link-text-wrap {
  position: relative;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  margin-left: -20px;
}

.nav-item-title {
  color: #180030;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1em;
  display: block;
}

.nav-item-title.white-link {
  color: #fff;
}

.nav-item-title.white-link:hover {
  color: #8000ff;
}

.brand-tablet {
  display: none;
}

.nav-number {
  color: rgba(24, 0, 48, .4);
  font-size: 12px;
  line-height: 1.5em;
  position: absolute;
  top: -18%;
  bottom: auto;
  left: -16px;
  right: auto;
}

.nav-number.white {
  color: rgba(255, 255, 255, .5);
  transition-property: none;
}

.nav-number.white:hover {
  color: rgba(255, 255, 255, .5);
}

.arrow-button {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.arrow-button.service {
  width: 12px;
}

.arrow-button.small {
  width: 16px;
  height: 16px;
}

.arrow-button.study {
  width: 30px;
  height: 30px;
}

.navbar-absolute-white {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(24, 0, 48, .1);
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-link-header {
  color: #180030;
  padding: 36px 20px;
  font-size: 18px;
  line-height: 1em;
  transition: color .3s;
  display: flex;
  position: relative;
}

.nav-link-header:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link-header.w--current {
  color: #180030;
}

.nav-dropdown-link-line {
  background-color: #8000ff;
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.dark-arrow {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  border-color: rgba(24, 0, 48, .1);
  border-radius: 8px;
  width: 188px;
  padding-top: 20px;
  padding-bottom: 20px;
  top: 70px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .04);
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  border-radius: 8px;
  width: 612px;
  display: flex;
  left: -279px;
}

.nav-dropdown-list.middle-menu.w--open {
  width: 400px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-buttons-wrapper {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.nav-dropdown-icon {
  color: var(--white);
  margin-left: 5px;
  margin-right: 0;
  font-size: 16px;
  display: block;
  position: static;
}

.nav-dropdown-icon.dark {
  color: var(--purple-dark-secondary);
}

.arrows-container {
  width: 12px;
  height: 12px;
  position: relative;
}

.arrows-container.service {
  width: 12px;
  height: 12px;
}

.arrows-container.call-to-action {
  width: 16px;
  height: 16px;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  transition: color .3s;
}

.section.without-top-spacing {
  background-color: var(--white);
  padding-top: 0;
}

.section.light-background {
  background-color: var(--gray-light);
}

.section.small-padding-bottom {
  padding-bottom: 40px;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.call-to-action-banner {
  background-image: url('../images/lets-build_1lets build.webp');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.testimonials-section {
  background-color: var(--purple-dark-secondary);
  max-height: 530px;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  overflow: hidden;
}

.section.home-fourth-call-to-action {
  background-color: #180030;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.banner-second-home {
  padding-top: 150px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.additional-top-spacing {
  padding-top: 100px;
  display: none;
  overflow: hidden;
}

.section.with-logo {
  background-image: url('../images/Home-2-Logo.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 60%;
  display: none;
}

.section.primary-bg-copy {
  background-color: var(--primary);
  display: none;
}

.section.slider {
  padding-bottom: 160px;
  display: none;
  overflow: hidden;
}

.section.position-relative {
  position: relative;
}

.section.secondary-light-bg-with-logo {
  background-color: #2b1343;
  position: relative;
}

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
}

.section.home-fourth-logos-purple {
  background-color: #8000ff;
  padding-top: 0;
  padding-bottom: 0;
}

.section.full-image-background {
  background-image: url('../images/Home-4-Bg-1_1Home 4 Bg (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.about-us-banner-section {
  padding-top: 170px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

.section.our-culture {
  background-color: #2b1343;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.banner-about-us-second {
  padding-top: 150px;
  padding-bottom: 80px;
}

.section.secondary-light-bg-about-us {
  background-color: #2b1343;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.without-top-space {
  padding-top: 0;
}

.section.portfolio-grid-banner {
  background-image: url('../images/DARK-ELIPS.png');
  background-position: 50% 126%;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
}

.section.backround-working-process {
  background-color: #180030;
  position: relative;
  overflow: hidden;
}

.section.price {
  position: relative;
}

.section.blog {
  background-image: url('../images/DARK-ELIPS.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 170px;
}

.section.contacts-banner {
  background-image: url('../images/Home-Bg-1_1Home Bg (1).webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.section.dark-background-map {
  background-color: #180030;
  align-items: center;
  min-height: 400px;
  display: flex;
  position: relative;
}

.section.our-team-banner {
  padding-top: 170px;
  padding-bottom: 155px;
  position: relative;
  overflow: hidden;
}

.section.banner-faq {
  background-image: url('../images/Home-4-Bg-1_1Home 4 Bg (1).webp');
  background-position: 50%;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.section.job-position-banner {
  background-color: #180030;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.section.blog-post-page, .section.project-banner {
  padding-top: 170px;
}

.section.without-top-space-small-bottom {
  padding-top: 0;
}

.section.landing-banner {
  background-color: #180030;
  background-image: url('../images/Ellipses.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 170px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.blue-background {
  background-color: #8000ff;
}

.section.tablet-without-botom-space {
  padding-bottom: 0;
}

.section.banner-dark {
  background-color: #180030;
  padding-top: 170px;
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.changelog-banner {
  background-color: #180030;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.section.dark-background-overflow-hidden {
  background-color: var(--purple-light-secondary);
  overflow: hidden;
}

.section.with-top-space {
  margin-top: 20px;
}

.grid-title {
  color: #fff;
  background-color: #8000ff;
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  background-color: #8000ff;
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-header {
  width: 100%;
  margin-top: 50px;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.spacing-columns {
  margin-top: 50px;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.typography-wrapper {
  margin-top: 30px;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 33%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.spacing-system-image {
  max-width: 80%;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 0%;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.dark-purple-style-guide {
  background-color: var(--purple-dark-secondary);
  width: 75px;
  height: 75px;
}

.paragraph-gray-style-guide {
  background-color: var(--paragraph);
  width: 75px;
  height: 75px;
}

.black-style-guide-color {
  background-color: var(--black);
  width: 75px;
  height: 75px;
}

.colors-container {
  grid-column-gap: 60px;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

.color-container {
  grid-column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.gray-style-guide {
  background-color: var(--gray-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

.color-wrapper {
  color: #180030;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.light-purpul-style-guide-copy {
  background-color: var(--purple-light-secondary);
  color: #2b1343;
  width: 75px;
  height: 75px;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.style-guide-subtitle {
  margin-bottom: 20px;
}

.link-with-icon {
  transition: all .3s;
  display: flex;
}

.link-with-icon:hover {
  color: #180030;
}

.link-with-icon.small-top-spacing, .link-with-icon.small-text-spacing, .link-with-icon.link-margin-top {
  margin-top: 15px;
}

.h1-tablet {
  font-size: 65px;
}

.small-bottom-spacing {
  margin-bottom: 20px;
}

.h2-mobile {
  font-size: 38px;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
}

.h5-mobile {
  font-size: 22px;
}

.style-guide-body-wrapper {
  letter-spacing: -.05em;
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.h3-mobile {
  font-size: 30px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.style-guide-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.h1-mobile {
  font-size: 46px;
}

.text-button-icon {
  margin-top: 4px;
  margin-left: 10px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.h2-tablet {
  font-size: 50px;
}

.h3-tablet {
  font-size: 36px;
}

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 50px;
  display: flex;
}

.rich-text-style h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text-style h3, .rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  margin-top: 20px;
  margin-bottom: 10px;
}

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
  display: flex;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h4-mobile {
  font-size: 24px;
}

.paragraph-large {
  text-align: left;
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-large.white-text {
  line-height: 1.5em;
}

.paragraph-large.our-culture-item-description-second {
  color: #fff;
  max-width: 950px;
  line-height: 1.5em;
}

.paragraph-large.our-culture-item-description-first {
  color: #fff;
  max-width: 770px;
  line-height: 1.5em;
}

.paragraph-large.text-dark {
  color: var(--purple-dark-secondary);
}

.button-primary-with-arrow {
  grid-column-gap: 50px;
  color: #fff;
  background-color: #8000ff;
  border: 1px solid #8000ff;
  border-radius: 0;
  padding: 16px 28px;
  transition: all .3s;
  display: flex;
}

.button-primary-with-arrow:hover {
  color: #180030;
  background-color: #fff;
  border: 1px solid #fff;
}

.button-primary-with-arrow.burger-list {
  display: none;
}

.button-primary-with-arrow.service {
  border-radius: 0 0 8px 8px;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 18px 20px;
  transform: translate(0, 1px);
}

.button-primary-with-arrow.service:hover {
  background-color: rgba(128, 0, 255, .07);
  border-color: rgba(128, 0, 255, .2);
}

.button-primary-with-arrow.call-to-action-small-gap {
  z-index: 2;
  border-radius: 0;
  justify-content: space-between;
  height: 78px;
  padding: 30px;
  position: relative;
}

.button-primary-with-arrow.call-to-action-small-gap:hover {
  color: #180030;
  background-color: #fff;
}

.button-primary-with-arrow.call-to-action {
  z-index: 2;
  grid-column-gap: 125px;
  border-radius: 0;
  justify-content: space-between;
  align-self: center;
  height: 78px;
  padding: 30px;
  position: relative;
}

.button-primary-with-arrow.call-to-action:hover {
  color: #180030;
  background-color: #fff;
}

.circle {
  font-family: "Fa Solid 900", sans-serif;
  font-size: 8px;
  line-height: 1em;
}

.button-header-wrapper {
  align-items: center;
  width: 232px;
  height: 90px;
  display: flex;
}

.button-secondary-white {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e9e9e9;
  border-radius: 30px;
  padding: 16px 24px;
  transition: all .3s;
  display: flex;
}

.button-secondary-white:hover {
  color: #8000ff;
  line-height: 1em;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.button-primary-white {
  grid-column-gap: 50px;
  color: #180030;
  letter-spacing: -.05em;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  justify-content: center;
  padding: 16px 24px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.button-primary-white:hover {
  color: #fff;
  background-color: #8000ff;
  border: 1px solid #8000ff;
}

.button-primary-white.margin-top-button {
  border-color: var(--primary);
  margin-top: 40px;
}

.button-primary-white.margin-top-button:hover {
  background-color: var(--primary);
}

.button-primary-white.mobile-full:hover {
  border-color: var(--white);
}

.button-secondary {
  border: 1px solid var(--primary);
  color: #180030;
  border-radius: 30px;
  padding: 16px 28px;
  transition: all .3s;
  display: none;
}

.button-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  line-height: 1em;
}

.style-guide-button-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.footer-address {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-email-link {
  color: #e9e9e9;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: underline;
}

.footer-email-link:hover {
  color: #8000ff;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
}

.logo-footer-image {
  width: 150px;
  max-width: 110%;
  height: 100%;
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.footer-link-wrapper {
  flex-direction: column;
  display: flex;
}

.footer-bottom-wrapper {
  border-top: 1px solid rgba(255, 255, 255, .2);
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: 400;
  display: flex;
}

.footer-links-wrapper {
  justify-content: space-between;
  width: 100%;
  max-width: 585px;
  display: flex;
}

.footer-rights {
  color: #fff;
  font-size: 16px;
}

.footer-social-icon {
  color: #fff;
  transform-style: preserve-3d;
  margin-right: 30px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 18px;
  font-style: normal;
  text-decoration: none;
  transition: all .3s;
}

.footer-social-icon:hover {
  color: #8000ff;
  transform: scale3d(1.08, 1.08, 1.08);
}

.footer-logo-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: #fff;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  transition: all .3s;
  display: block;
}

.footer-link:hover {
  color: #8000ff;
}

.footer-brand-description {
  color: #fff;
  text-align: left;
  font-size: 18px;
  line-height: 1.5em;
}

.footer {
  background-color: var(--purple-dark-secondary);
  text-align: center;
  align-items: flex-start;
  padding-top: 80px;
}

.white-text {
  color: #fff;
}

.white-text.footer-links-header {
  text-align: left;
}

.white-text.text-center {
  text-align: center;
}

.footer-copyright {
  color: #fff;
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  display: inline;
}

.footer-links-header {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-social-icons-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: -.5px;
  margin-right: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-copyright-link:hover {
  color: #8000ff;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.footer-right-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.button-primary-header {
  grid-column-gap: 50px;
  color: #fff;
  background-color: #8000ff;
  border: 1px solid #8000ff;
  border-radius: 30px;
  justify-content: flex-start;
  padding: 16px 28px;
  line-height: 1.5em;
  transition: all .3s;
  display: flex;
}

.button-primary-header:hover {
  color: #180030;
  background-color: #fff;
  border: 1px solid #8000ff;
}

.button-primary-header.header {
  z-index: 2;
  grid-column-gap: 30px;
  border: 0 rgba(0, 0, 0, 0);
  border-radius: 0;
  justify-content: space-between;
  height: 91px;
  transition-duration: .4s;
  display: flex;
  position: relative;
}

.button-primary-header.header:hover {
  background-color: #fff;
}

.button-primary-header.burger-list {
  z-index: 2;
  grid-column-gap: 20px;
  border-radius: 0;
  justify-content: space-between;
  height: 91px;
  transition-duration: .4s;
  display: flex;
  position: relative;
}

.button-primary-header.burger-list:hover {
  border-style: none;
  border-width: 0;
}

.white-link {
  color: #fff;
  transition: color .3s;
}

.white-link:hover {
  color: #8000ff;
}

.navbar-absolute-transparent {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dark-arrow-icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.banner-text-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  display: flex;
}

.banner-text-wrapper.max-width {
  align-items: flex-start;
  max-width: 370px;
}

.banner-header-description {
  color: #fff;
  text-align: center;
  max-width: 570px;
  margin-top: 25px;
  margin-bottom: 50px;
  font-size: 18px;
}

.banner-logo {
  width: 70px;
  margin-bottom: 30px;
}

.h1-home {
  text-align: center;
  font-weight: 700;
}

.h1-home.white-text {
  text-align: center;
}

.home-banner-section {
  background-image: url('../images/Home-Bg-1_1Home Bg (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 80px;
  display: flex;
}

.banner-buttons-wrap {
  grid-column-gap: 12px;
  display: flex;
}

.banner-buttons-wrap.home-2 {
  z-index: 5;
  min-width: 300px;
  position: relative;
}

.section-logos {
  display: none;
}

.section-logos.gray {
  background-color: #fafafa;
  margin-top: 10px;
  display: block;
}

.section-logos.purple {
  background-color: #8000ff;
}

.logo-overflow-hidden {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
  overflow: hidden;
}

.logo-wrapper {
  grid-column-gap: 50px;
  width: 2000px;
  display: flex;
}

.company-logo {
  opacity: .6;
  height: 40px;
}

.big-number {
  color: #8000ff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5em;
}

.big-number.left {
  color: var(--primary);
}

.button-primary-call-to-action {
  grid-column-gap: 50px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px;
  justify-content: flex-start;
  padding: 16px 28px;
  line-height: 1.5em;
  transition: all .3s;
  display: none;
}

.button-primary-call-to-action:hover {
  border: 1px solid var(--primary);
  color: #180030;
  background-color: #fff;
}

.button-primary-call-to-action.call-to-action {
  border-radius: 0;
  justify-content: space-between;
  height: 78px;
}

.button-primary-call-to-action.call-to-action:hover {
  color: #180030;
  background-color: #fff;
}

.button-primary-call-to-action.margin-top-35 {
  grid-row-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  margin-top: 35px;
  margin-right: auto;
}

.button-primary-call-to-action.margin-top-gap {
  justify-content: center;
  margin-top: 30px;
}

.button-primary-call-to-action.shrink {
  flex: 1;
  justify-content: center;
  font-weight: 700;
}

.button-primary-call-to-action.margin-top-call-to-action-button {
  justify-content: center;
  margin-top: 30px;
}

.button-primary-call-to-action.space-mobile-center {
  grid-row-gap: 0px;
  justify-content: center;
  margin-top: 35px;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  background-color: rgba(128, 0, 255, 0.1);
  border-radius: 5px;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.section-subtitle.banner {
  align-self: center;
}

.section-subtitle.max-width {
  align-items: center;
  width: 280px;
}

.section-subtitle.left-mobile-center, .section-subtitle.left {
  align-self: flex-start;
}

.section-subtitle.center {
  align-self: center;
}

.image-wrap {
  border-radius: 9px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.who-we-are {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.statistics-wrap-item {
  padding-top: 35px;
  padding-bottom: 35px;
}

.statistics-wrap-item.first {
  border-bottom: 1px solid rgba(24, 0, 48, .2);
}

.statistics-wrap-item.without-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.grid-2-columns {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2-columns.why-choose-us {
  grid-column-gap: 60px;
  grid-template-columns: .75fr .75fr;
  align-items: end;
}

.statistic-wrap.flex-horizontal {
  grid-column-gap: 0px;
  padding-top: 20px;
  display: flex;
}

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

.flex-vertical.row-15 {
  grid-row-gap: 5px;
  align-items: flex-start;
}

.flex-vertical.services-text {
  max-width: 370px;
}

.services-item {
  background-color: #fbf7ff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.services-item.white {
  background-color: #fff;
  border-style: none;
}

.big-text {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1em;
}

.big-text.margin-top-section-space {
  margin-top: 80px;
}

.big-text.dark {
  color: #180030;
}

.big-text.dark-center {
  color: #180030;
  text-align: left;
  max-width: 1100px;
}

.title-center {
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-center.row-15-gap {
  flex-direction: column;
  align-self: center;
  align-items: center;
  display: flex;
}

.dark-background-with-logo {
  background-color: #180030;
  background-image: url('../images/Logo-White_1Logo White.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  width: 100%;
}

.dark-background-with-logo.big-text {
  margin-top: -90px;
  padding-top: 140px;
  padding-bottom: 80px;
}

.light-text-span {
  color: #998aa9;
}

.services-collection.home-2 {
  max-width: 370px;
  margin-top: 0;
}

.services-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-list.left-column {
  grid-template-columns: 1fr;
}

.services-list.right-column {
  grid-template-columns: 1fr;
  margin-top: 60px;
}

.other-services-collection-item {
  padding-bottom: 30px;
  position: relative;
}

.other-services-collection-item.with-background {
  background-color: rgba(128, 0, 255, .01);
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 8px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all .3s;
}

.other-services-collection-item.with-background:hover {
  background-color: rgba(128, 0, 255, .03);
}

.other-services-collection-list {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.other-services-collection-list.margin-top-space-30 {
  margin-top: 30px;
}

.other-services-collection-list.gap-30 {
  grid-column-gap: 30px;
}

.section-title-wrapp {
  max-width: 380px;
}

.section-title-wrapp.full {
  align-self: center;
}

.section-title-wrapp.center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.services-list-item-wrap {
  border-top: 1px solid rgba(128, 0, 255, .2);
  border-left: 1px solid rgba(128, 0, 255, .2);
  border-right: 1px solid rgba(128, 0, 255, .2);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex: 1;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.services-list-item-wrap.without-border {
  border-top-style: none;
  border-top-width: 0;
  border-left-width: 0;
  border-right-style: none;
  border-right-width: 0;
}

.service-icon {
  color: #8000ff;
  background-color: rgba(128, 0, 255, .07);
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 54px;
  padding: 12px;
  font-size: 42px;
  line-height: 100%;
  display: flex;
}

.service-icon.margin-top {
  z-index: 50;
  margin-top: 10px;
  position: relative;
}

.service-link {
  color: var(--purple-dark-secondary);
  margin-bottom: 5px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
  transition: all .3s;
}

.service-link:hover {
  color: #8000ff;
}

.h5-link {
  color: var(--purple-dark-secondary);
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  transition: all .2s;
  display: block;
}

.h5-link:hover {
  color: #8000ff;
}

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

.h5-link.white-link:hover {
  color: var(--purple-dark-secondary);
}

.service-description {
  margin-bottom: 20px;
  line-height: 1.5em;
}

.dark-arrow-icn {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dark-arrow-icn.service {
  width: 12px;
  height: 12px;
}

.hover-line {
  background-color: #8000ff;
  width: 100%;
  height: 3px;
  margin-top: 30px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gray-line {
  background-color: rgba(24, 0, 48, .2);
  width: 100%;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.color {
  width: 100%;
  height: 65px;
}

.color.light-300 {
  background-color: #bd7aff;
}

.color.middle {
  background-color: #ad5aff;
}

.color.middle-dark {
  background-color: #93f;
}

.color.light-100 {
  background-color: #e3c8ff;
  height: 110px;
}

.color.light-200 {
  background-color: #d3a7ff;
}

.colors-block-with-button {
  width: 300px;
  position: absolute;
  top: -100px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.banner-wrap {
  width: 100%;
  position: relative;
}

.banner-text-description {
  color: #fff;
  max-width: 480px;
  margin-top: 25px;
  font-size: 18px;
}

.banner-text {
  color: #fff;
  max-width: 500px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
}

.dark-arrow-service {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dark-arrow-service.small {
  width: 16px;
  height: 16px;
}

.dark-arrow-service.service {
  width: 12px;
  height: 12px;
}

.dark-arrow-service.study {
  width: 30px;
  height: 30px;
}

.title-flex {
  display: flex;
}

.title-flex.space-between {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.work-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.header-banner-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.header-banner-wrap.max-width {
  max-width: 400px;
}

.header-banner-wrap.center {
  align-items: center;
}

.h2 {
  font-size: 60px;
}

.h2.services {
  margin-bottom: 15px;
}

.blog-wrap {
  margin-top: 50px;
}

.image-link {
  width: 100%;
  overflow: hidden;
}

.project-image-full {
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  height: 380px;
  transition: all .3s ease-in;
}

.project-image-full:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}

.case-title-link {
  color: var(--purple-dark-secondary);
  margin-top: 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  transition: all .3s;
  display: block;
}

.case-title-link:hover {
  color: var(--primary);
}

.categories {
  grid-column-gap: 5px;
  align-items: center;
  display: flex;
}

.category {
  grid-column-gap: 5px;
  display: flex;
}

.review-item-wrap {
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid #fff;
  border-radius: 8px;
  max-width: 370px;
  padding: 30px;
}

.review-item-wrap.fix-width {
  width: 370px;
  max-width: none;
}

.review-item-wrap.with-background {
  background-color: rgba(128, 0, 255, .03);
  border-color: rgba(128, 0, 255, .2);
}

.testimonials-header-wrap {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 485px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.testimonials-header-description {
  color: #fff;
  font-size: 18px;
  line-height: 1.5em;
}

.section-subtitle-white {
  grid-row-gap: 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.testimonials-section-wrap {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.reviews-wrapper-column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.reviews-wrapper-column.second {
  padding-top: 60px;
  display: block;
}

.review-author {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #fff;
  letter-spacing: -.03em;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  display: flex;
}

.review-author.primary-text {
  color: #8000ff;
}

.review-text {
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 35px;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 1.5em;
}

.review-text.dark-text {
  color: #180030;
}

.images-gallery {
  z-index: 2;
  width: 3500px;
  height: 350px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.images-gallery.margin-top-large {
  margin-top: 60px;
  padding-top: 36px;
}

.call-to-action-logo-background {
  width: 700px;
  position: absolute;
  top: 3%;
  left: -10%;
}

.call-to-action-logo-background.right {
  object-fit: contain;
  width: 863px;
  top: 26%;
  left: auto;
  right: -48%;
}

.call-to-action-logo-background.left {
  top: 15%;
  left: -34%;
}

.call-to-action-image {
  border-radius: 10px;
  height: 340px;
}

.call-to-action-image.rotate-right-5-degrees {
  transform: rotate(5deg);
}

.call-to-action-image.rotate-left-6-degrees, .call-to-action-image.rotate-left-degrees {
  transform: rotate(-6deg);
}

.call-to-action-image.rotate-left-degrees {
  transform: rotate(-10deg);
}

.underline {
  background-image: url('../images/underline.svg');
  background-position: 100% 98%;
  background-repeat: no-repeat;
  background-size: auto;
}

.call-to-action-image-second {
  border-radius: 16px;
}

.call-to-action-image-second.rotate-right {
  height: 340px;
  transform: rotate(5deg);
}

.text-wrap-center-block-call-to-action {
  z-index: 2;
  flex-direction: column;
  align-self: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.home-fourth-images-wrap {
  width: 100%;
  overflow: hidden;
}

.call-to-action-block-gradient {
  opacity: .35;
  filter: blur(160px);
  background-color: #8000ff;
  border-radius: 300px;
  width: 800px;
  height: 600px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  left: 14%;
}

.home-second-image-wrap {
  display: inline-block;
}

.call-to-action-banner-heading {
  color: #fff;
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
}

.call-to-action-text-description {
  color: #e9e9e9;
  text-align: center;
  max-width: 630px;
  margin-top: 25px;
  font-size: 18px;
}

.home-second-header-description {
  color: var(--black);
  max-width: 530px;
  margin-top: 15px;
  font-size: 18px;
}

.headline {
  color: var(--primary);
  text-align: left;
  font-weight: 700;
}

.logo-background {
  z-index: 1;
  width: 950px;
  position: absolute;
  top: 20%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.logo-background.right {
  bottom: auto;
  left: auto;
  right: -70%;
}

.logo-background.left {
  left: -92%;
}

.home-second-banner-text-wrap {
  width: 100%;
  max-width: 580px;
}

.home-second-banner-images-wrap {
  z-index: 20;
  width: 100%;
  overflow: hidden;
}

.home-second-banner-images-line {
  z-index: 2;
  width: 3500px;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  transform: translate(-92px);
}

.purple-text {
  color: var(--purple-dark-secondary);
}

.box-gallery-image-home {
  border-radius: 16px;
  height: 350px;
}

.box-gallery-image-home.rotate-left-10-degrees {
  transform: rotate(-10deg);
}

.box-gallery-image-home.rotate-left-6-degrees {
  transform: rotate(-6deg);
}

.box-gallery-image-home.rotate-right {
  transform: rotate(5deg);
}

.box-gallery-image-home.rotate-right-6-degrees {
  transform: rotate(6deg);
}

.logo {
  background-image: url('../images/Logo-header-text.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 95px;
  margin-right: 5px;
  display: none;
}

.home-2-banner-wrap {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.home-2-banner-wrap.position-relative {
  z-index: 5;
}

.banner-gradient {
  z-index: -1;
  filter: blur(100px);
  background-image: radial-gradient(circle, rgba(128, 0, 255, 0.1), #fff);
  border-radius: 500px;
  width: 100%;
  max-width: 1400px;
  height: 400px;
  position: absolute;
  top: 35%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.logo-wrapper-home-second {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
  display: grid;
  overflow: hidden;
}

.image-wrap-with-button {
  background-image: url('../images/Style-1_1Style (1).webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 9px;
  align-items: flex-end;
  height: 320px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.banner-home-second-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.vertical-line {
  background-color: rgba(24, 0, 48, .2);
  width: 2px;
  margin-left: 20px;
  margin-right: 20px;
}

.services-gradient {
  z-index: -1;
  opacity: .54;
  filter: blur(110px);
  background-image: radial-gradient(circle, rgba(128, 0, 255, .4), #fff);
  border-radius: 500px;
  width: 530px;
  max-width: 1400px;
  height: 530px;
  position: absolute;
  top: 62px;
  bottom: 37%;
  left: auto;
  right: 0%;
}

.text-max-with {
  width: 200px;
}

.flex-horizontal {
  grid-column-gap: 60px;
  width: 100%;
  display: flex;
}

.home-second-services {
  grid-column-gap: 30px;
  display: flex;
  position: relative;
}

.icon-image {
  width: 30px;
  position: relative;
}

.icon-image.middle-icon {
  width: 24px;
}

.arrow-button-icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.arrow-button-icon.service {
  width: 12px;
}

.big-text-dark {
  color: #180030;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1em;
}

.big-text-wrap-white-section {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.figure-background {
  position: absolute;
  top: auto;
  bottom: 34%;
  left: 0%;
  right: auto;
}

.figure-background.circle {
  top: 16%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.figure-background.globe-service {
  top: -46px;
}

.figure-background.figure {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.home-2-services-collection-list {
  margin-top: 50px;
}

.home-2-services-list {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.home-2-services-item {
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.section-subtitle-white-background {
  color: #8000ff;
  background-color: rgba(128, 0, 255, .1);
  border-radius: 5px;
  flex-direction: column;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.section-subtitle-white-background.white {
  color: #fff;
  background-color: rgba(251, 247, 255, .2);
}

.home-2-services-wrapper {
  width: 100%;
  position: relative;
}

.home-2-service-title {
  color: rgba(0, 0, 0, 0);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  max-width: 720px;
  font-size: 80px;
  line-height: 1.1em;
  transition: color .3s cubic-bezier(.55, .055, .675, .19);
}

.home-2-service-title:hover {
  color: #fff;
}

.home-2-service-description {
  color: #fff;
  text-align: center;
  max-width: 450px;
  margin-top: 25px;
  font-weight: 500;
}

.reviews-container-wrap {
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.reviews-wrapper-row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  align-items: stretch;
  width: 2390px;
  display: flex;
}

.text-wrapper-center {
  align-self: center;
  max-width: 700px;
}

.text-description-white-center {
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

.arrow-default {
  position: absolute;
}

.arrow-default.left {
  transform: rotate(-180deg);
}

.slider-our-work {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(24, 0, 48, .1);
  height: auto;
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.arrow-hover.left {
  transform: rotate(-180deg);
}

.our-work-wrap {
  grid-column-gap: 50px;
  width: 100%;
  display: flex;
}

.line-horizontal {
  z-index: 2;
  background-color: #8000ff;
  height: 3px;
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0%;
  right: 0%;
}

.base-container-right {
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container-right.large-right {
  margin-right: 0;
}

.section-wrap-title.our-work {
  flex-direction: column;
  align-items: flex-start;
  width: 370px;
  min-width: 240px;
  display: flex;
}

.slider-our-work-slide {
  width: 40%;
  min-height: 517px;
  margin-bottom: 1px;
  margin-right: 30px;
  padding-bottom: 30px;
}

.mask-slider {
  height: 100%;
  overflow: hidden;
}

.slider-wrap {
  width: 100%;
}

.slider-arrow {
  color: #8000ff;
  background-color: #fff;
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: all .3s;
  display: flex;
  top: auto;
  bottom: -80px;
  left: 0%;
  right: auto;
}

.slider-arrow:hover {
  color: #fff;
  background-color: #8000ff;
}

.slider-arrow.left-arrow {
  left: 62px;
}

.slide-nav-hidden {
  display: none;
}

.project-image {
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  height: 250px;
  transition: all .3s ease-in;
}

.project-image:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}

.call-to-action-description {
  color: var(--paragraph);
  text-align: center;
  margin-top: 25px;
  font-size: 18px;
}

.colors-block-background {
  z-index: -1;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.color-background {
  width: 100%;
  height: 100%;
}

.color-background.light-100 {
  background-color: #f1e3ff;
}

.color-background.dark {
  background-color: #8000ff;
}

.color-background.middle-200 {
  background-color: #ad5aff;
}

.color-background.light-200 {
  background-color: #e3c8ff;
  height: 100%;
}

.color-background.middle-100 {
  background-color: #bd7aff;
}

.color-background.light-300 {
  background-color: #d3a7ff;
}

.color-background.middle-300 {
  background-color: #93f;
}

.button-primary-w {
  grid-column-gap: 50px;
  color: #180030;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  justify-content: center;
  padding: 16px 24px;
  transition: all .3s;
  display: flex;
}

.button-primary-w:hover {
  color: #fff;
  background-color: #8000ff;
  border: 1px solid #8000ff;
}

.button-primary-w.margin-top-30 {
  margin-top: 30px;
}

.home-2-cta-wrap {
  flex-direction: column;
  align-self: center;
  align-items: center;
  max-width: 750px;
  display: flex;
}

.home-2-call-to-action-heading {
  color: var(--black);
  text-align: center;
  letter-spacing: -.05em;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
}

.scroll-down-arrow {
  height: 51px;
  margin-top: 15px;
  margin-right: 15px;
}

.gradient-header {
  opacity: .2;
  filter: blur(100px);
  background-color: #8000ff;
  border-radius: 600px;
  width: 600px;
  height: 600px;
  position: absolute;
  top: 25%;
  bottom: 0%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.h1-home-3 {
  color: #fff;
  max-width: 600px;
}

.company-logo-wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 70px;
  margin-right: auto;
  display: flex;
}

.banner-section-home-3 {
  flex-direction: column;
  padding-top: 170px;
  padding-bottom: 80px;
  position: relative;
}

.banner-section-home-3.section-black {
  background-color: #171717;
  background-image: url('../images/Ellipses.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 1600px;
  padding-top: 170px;
  padding-bottom: 70px;
  overflow: hidden;
}

.scroll-down-block {
  align-items: center;
  max-width: 161px;
  display: flex;
}

.home-3-banner-header-description {
  color: #fff;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5em;
}

.market-leaders-heading {
  color: #fff;
  max-width: 300px;
}

.company-logo-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  opacity: .6;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 620px;
  display: grid;
}

.banner-header-3-grid {
  z-index: 3;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr .75fr 1.25fr;
  grid-auto-columns: .25fr;
  width: 100%;
  padding-bottom: 70px;
  display: grid;
  position: relative;
}

.banner-right-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.paragraph-wrapper.max-width-750 {
  max-width: 750px;
}

.logo-bg-home-3 {
  width: 700px;
  position: absolute;
  top: 3%;
  left: -10%;
}

.big-text-medium {
  color: #fff;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

.big-text-medium.max-width-text-about-us {
  max-width: 850px;
}

.content-wrapper {
  z-index: 2;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.home-3-service-item {
  grid-column-gap: 50px;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.content-wrapper-flex {
  grid-row-gap: 40px;
  flex-direction: column;
  align-self: center;
  align-items: center;
  display: flex;
}

.collection-list-wrapper {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.home-3-service-heading {
  color: #180030;
  max-width: 630px;
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1em;
  transition: color .3s;
}

.home-3-service-heading:hover {
  color: #8000ff;
}

.max-width {
  max-width: 480px;
}

.service-icon-home-3 {
  color: #8000ff;
  background-color: rgba(128, 0, 255, .07);
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 54px;
  margin-top: 10px;
  padding: 14px;
  font-size: 42px;
  line-height: 100%;
  display: flex;
}

.second-icon {
  opacity: 1;
  width: 30px;
  position: absolute;
}

.second-icon.middle {
  width: 24px;
}

.services-dash-line {
  height: 205px;
  position: absolute;
  top: 73px;
  left: 20px;
}

.dark-bg-with-logo-not-fixed {
  background-color: #180030;
  background-image: url('../images/Union.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  width: 100%;
}

.dark-bg-with-logo-not-fixed.big-text {
  background-size: 49%;
  background-attachment: scroll;
  padding-top: 100px;
  padding-bottom: 100px;
}

.subtitle-wrapp {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  max-width: 300px;
  margin-bottom: 50px;
  display: flex;
}

.subtitle-wrapp.center {
  margin-left: auto;
  margin-right: auto;
}

.home-3-banner-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.banner-section {
  flex-direction: column;
  padding-top: 170px;
  padding-bottom: 80px;
  position: relative;
}

.banner-section.career {
  padding-top: 190px;
  overflow: hidden;
}

.home-3-text-container {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 626px;
  display: flex;
}

.home-4-image-absolute {
  width: 380px;
  position: absolute;
  top: auto;
  bottom: 86%;
  left: auto;
  right: 0%;
}

.logos-block-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

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

.medium {
  font-weight: 500;
}

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

.fixed-width-block {
  max-width: 228px;
  margin-right: 40px;
}

.logos-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 40px 40px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.company-logo-image {
  width: 100%;
}

.company-logo-image.home-4 {
  width: 80%;
}

.home-4-services-list {
  grid-column-gap: 30px;
  display: flex;
}

.home-4-services-item {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}

.text-wrap-max-width {
  width: 530px;
}

.text-wrap-max-width.with {
  flex-direction: column;
  align-items: flex-start;
  width: 250px;
  margin-right: 20px;
  display: flex;
}

.home-4-services-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.folder {
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-white {
  color: #fff;
}

.service-item-wrap {
  z-index: 10;
  padding: 30px 20px;
  position: relative;
}

.service-icon-white {
  color: #8000ff;
  background-color: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 54px;
  padding: 12px;
  font-size: 42px;
  line-height: 100%;
  display: flex;
}

.link-with-arrow-bottom-white {
  grid-column-gap: 50px;
  color: #fff;
  border-radius: 30px;
  justify-content: space-between;
  transition: all .3s;
  display: flex;
}

.link-with-arrow-bottom-white:hover {
  color: #180030;
}

.link-with-arrow-bottom-white.margin-top-20 {
  margin-top: 20px;
}

.link-with-arrow-bottom {
  grid-column-gap: 50px;
  color: #8000ff;
  border-radius: 30px;
  justify-content: space-between;
  transition: all .3s;
  display: flex;
}

.link-with-arrow-bottom:hover {
  color: #180030;
}

.link-with-arrow-bottom.margin-top-20 {
  margin-top: 20px;
}

.section-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
  margin-right: 50px;
  display: flex;
}

.big-text-home-4 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

.block-left-aligment {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-description {
  margin-top: 5px;
  font-size: 18px;
}

.text-description.center {
  text-align: center;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.logo-background-about-us {
  z-index: 1;
  width: 950px;
  display: none;
  position: absolute;
  top: 55%;
  bottom: auto;
  left: -60%;
  right: auto;
}

.logo-background-about-us.right {
  top: 48%;
  bottom: auto;
  left: auto;
  right: -35%;
}

.about-us-text-container {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 630px;
  display: flex;
}

.top-section-image-background {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 118px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.logo-backgroundg-our-culture {
  z-index: 1;
  width: 950px;
  position: absolute;
  top: 20%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.logo-backgroundg-our-culture.left {
  left: -92%;
}

.our-culture-item {
  max-width: 1082px;
}

.big-text-about {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
}

.big-text-about.big-text-margin-bottom {
  margin-bottom: 15px;
}

.our-culture-list {
  z-index: 5;
  grid-row-gap: 50px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  bottom: -1px;
}

.logo-background-our-culture {
  z-index: 1;
  width: 950px;
  position: absolute;
  top: 20%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.logo-background-our-culture.right {
  bottom: auto;
  left: auto;
  right: -70%;
}

.gradient-background {
  opacity: .2;
  filter: blur(100px);
  background-color: #8000ff;
  border-radius: 600px;
  width: 1000px;
  height: 500px;
  display: none;
  position: absolute;
  top: auto;
  left: 53%;
  right: 0%;
  transform: translate(-50%, -50%);
}

.subtitle-wrap {
  width: 100%;
  margin-bottom: 40px;
}

.subtitle-wrap.subtitle-wrap-margin-top {
  padding-top: 60px;
  display: flex;
}

.images-block {
  margin-top: 60px;
}

.image-gradient {
  background-color: var(--purple-dark-secondary);
  opacity: .24;
  filter: blur(100px);
  border-radius: 300px;
  width: 300px;
  height: 300px;
  position: absolute;
}

.features-flex-wrap {
  grid-row-gap: 70px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
  overflow: hidden;
}

.feature-flex-box {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.feature-text-wrap {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 430px;
  padding-right: 30px;
  display: flex;
}

.feature-image-wrap {
  justify-content: center;
  align-items: center;
  width: 615px;
  height: 475px;
  display: flex;
}

.feature-image-wrap.right {
  background-image: none;
}

.section-wrapper {
  z-index: 2;
  max-width: 80%;
  position: relative;
}

.wrapper-subheading {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.flex-align-center {
  justify-content: space-between;
  align-items: center;
}

.about-company {
  border-radius: 8px;
}

.text-block-wrap {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 560px;
  display: flex;
}

.text-block-wrap.text-block-wrap-padding {
  padding-right: 50px;
}

.subheading-label-16 {
  color: #8000ff;
}

.team-collection {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.team-collection.margin-top-team-collection {
  grid-row-gap: 0px;
  grid-template-rows: auto;
  margin-top: 50px;
}

.social-icon {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #180030;
  border-radius: 30px;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 4px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 18px;
  line-height: 1.1em;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-icon:hover {
  color: #8000ff;
  background-color: #fff;
  transform: scale3d(1.01, 1.01, 1.01);
}

.social-icon.facebook {
  font-size: 17px;
}

.team-collection-item {
  width: 100%;
  position: relative;
}

.worker-name {
  margin-top: 20px;
  margin-bottom: 5px;
  transition: color .3s;
}

.text-wrap-flex {
  display: flex;
}

.text-wrap-flex.space-between {
  justify-content: space-between;
  width: 100%;
}

.social-media-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 10px;
}

.worker-photo {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

.banner-image-full {
  object-fit: cover;
  border-radius: 5px;
  width: 500px;
  height: 440px;
  position: absolute;
  top: auto;
  bottom: -120px;
  left: auto;
  right: 0%;
}

.banner-inner-flex {
  z-index: 5;
  grid-column-gap: 60px;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.our-advantages {
  grid-column-gap: 30px;
  width: 100%;
  display: flex;
}

.advantage-image {
  width: 80px;
  height: 80px;
}

.advantage-image.left {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.advantage-image.central {
  transform-style: preserve-3d;
  transform: rotateX(180deg)rotateY(0)rotateZ(24deg);
}

.advantage-item {
  color: #fff;
  text-align: center;
}

.advantage-image-first {
  width: 80px;
  height: 80px;
}

.advantage-image-first.left {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(-4deg);
}

.advantage-wrap {
  grid-column-gap: 30px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.about-big-number {
  color: #180030;
  text-align: left;
  height: 100%;
  margin-bottom: 0;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
}

.about-2-counter-grid {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.about-2-counter-item {
  grid-column-gap: 20px;
  grid-row-gap: 5px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: grid;
}

.about-2-counter-item.first {
  border-bottom: 1px solid rgba(24, 0, 48, .1);
  grid-template-columns: .75fr 1fr;
}

.text-image {
  background-image: url('../images/64d5f981c1bc4d6e5bdf17f7_empowering-businesses.webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 60px;
  padding-right: 60px;
}

.text-image-smail {
  background-image: url('../images/Home-2-Image-5-1_1Home 2 Image-5 (1).webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 50px;
  padding-right: 50px;
  display: inline;
}

.about-2-services {
  width: 100%;
}

.description {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 18px;
}

.max-width-block {
  grid-row-gap: 5px;
  flex-direction: column;
  width: 100%;
  min-width: 400px;
  display: flex;
}

.flex-vertical-service-heading {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.about-us-services-section-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.about-2-services-list {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-button-wrap {
  border: 1px solid rgba(24, 0, 48, .2);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
}

.faq-button-wrap.about {
  border-width: 0;
  margin-top: 0;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  display: flex;
}

.horizontal-line-faq {
  background-color: #180030;
  border-radius: 3px;
  width: 18px;
  height: 3px;
}

.accordion-title {
  max-width: 600px;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.vertical-line-faq-button {
  color: #180030;
  background-color: #180030;
  border-radius: 3px;
  width: 3px;
  height: 18px;
  position: absolute;
}

.accordion-item {
  background-color: #fbf7ff;
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 10px;
  flex-direction: column;
  min-width: 100%;
  padding: 20px;
  display: flex;
}

.accordion-item.service {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-width: 0;
  border-radius: 0;
  width: 100%;
  min-width: 510px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.accordion-list {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.our-mission {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
  display: flex;
}

.paragraph-large-text {
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-large-text.white-text {
  line-height: 1.5em;
}

.our-values {
  object-fit: cover;
  width: 380px;
  height: 410px;
  position: absolute;
  top: auto;
  bottom: 86%;
  left: auto;
  right: 0%;
}

.our-advantages-wrapper {
  grid-column-gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.our-advantages-heading-wrap {
  width: 460px;
}

.our-advantages-wrap-content {
  grid-row-gap: 40px;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.purpule {
  color: #8000ff;
}

.our-advantage-item-wrap {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 490px;
  display: flex;
}

.img-company {
  object-fit: cover;
  border-radius: 8px;
  width: 600px;
  height: 460px;
  position: absolute;
  top: -20px;
  left: -20px;
}

.year {
  font-weight: 700;
}

.image-wrap-with-background {
  background-color: #8000ff;
  border-radius: 8px;
  width: 600px;
  height: 460px;
  padding-bottom: 20px;
  padding-right: 20px;
  position: relative;
}

.flex-align-center-second {
  justify-content: space-between;
  align-items: center;
}

.flex-align-center-second.flex-align-center-second-gap {
  margin-top: 70px;
}

.light-color-block {
  grid-row-gap: 5px;
  background-color: #fbf7ff;
  border: 1px solid rgba(24, 0, 48, .2);
  border-radius: 8px;
  flex-direction: column;
  padding: 30px;
  display: flex;
}

.light-color-block.purpule {
  background-color: #8000ff;
}

.light-color-block.dark {
  background-color: #180030;
}

.advantages-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.title-text-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.title-text-wrap.title-text-wrap-max-width {
  max-width: 450px;
}

.testimonials-wrapper {
  grid-column-gap: 30px;
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.review-item-wrap-pricing-page {
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid #fff;
  border-radius: 8px;
  max-width: 370px;
  padding: 30px;
}

.review-item-wrap-pricing-page.with-background {
  background-color: #fbf7ff;
  border-color: rgba(128, 0, 255, .2);
}

.title-wrap {
  width: 100%;
}

.title-wrap.flex {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.review-item-wrap-last {
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid #fff;
  border-radius: 8px;
  max-width: 370px;
  padding: 30px;
}

.review-item-wrap-last.with-background {
  background-color: #fbf7ff;
  border-color: rgba(128, 0, 255, .2);
}

.banner-wrap-full {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.lightbox-link {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.video-block {
  z-index: 50;
  border-radius: 400px;
  justify-content: flex-end;
  width: 400px;
  height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.study-cases-video-btn {
  z-index: 5;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.description-dark {
  color: #180030;
  font-size: 18px;
}

.banner-title-services {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 380px;
  display: flex;
}

.play-button-hover {
  z-index: 10;
  border: 3px solid #8000ff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  transition: all .3s;
  position: absolute;
  transform: translate(0)scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.play-button {
  z-index: 5;
  background-color: #8000ff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
}

.lightbox-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.play-button-icon {
  z-index: 7;
  color: #fff;
  margin-left: 4px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.success-message {
  color: #8000ff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
}

.free-consultation-form {
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.free-consultation-wrap {
  grid-row-gap: 30px;
  background-color: #8000ff;
  border-radius: 8px;
  flex-direction: column;
  width: 100%;
  padding: 40px 30px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}

.services-list-inner {
  width: 100%;
}

.service-list-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.services-wrap-service-page {
  width: 100%;
}

.field-form {
  background-color: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  width: 70%;
  height: auto;
  margin-bottom: 0;
  padding: 20px 16px;
  font-size: 16px;
}

.field-form:active {
  border-color: #8000ff;
}

.field-form:focus {
  border-color: #fff;
}

.field-form::placeholder {
  color: rgba(255, 255, 255, .5);
}

.field-form.full {
  color: #fff;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
}

.field-form.full-textarea {
  color: #fff;
  border-radius: 8px;
  width: 100%;
  min-height: 120px;
  font-size: 16px;
}

.field-form.email {
  min-width: 300px;
}

.service-link-block {
  border-bottom: 1px solid rgba(43, 19, 67, .2);
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.arrow-container {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-top: 10px;
  position: relative;
}

.logo-bg-home-process {
  position: absolute;
  top: -10%;
  left: -15%;
}

.logo-bg-home-process.right {
  width: 900px;
  top: 33%;
  left: auto;
  right: -27%;
}

.flex-stages {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
  position: relative;
}

.stage-description {
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.section-title-wrapp-working-process {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  max-width: 460px;
  margin-bottom: 50px;
  padding-right: 50px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.process-divider {
  background-color: rgba(255, 255, 255, .2);
  width: 100%;
  height: 1px;
}

.process-item {
  z-index: 20;
  background-color: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 500px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
  position: relative;
}

.process-item.process-item-gap {
  margin-top: 80px;
}

.working-process-wrap {
  z-index: 5;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.process-item-wrap {
  align-items: center;
  display: flex;
}

.gradient-services {
  opacity: .2;
  filter: blur(100px);
  background-color: #8000ff;
  border-radius: 600px;
  width: 600px;
  height: 600px;
  position: absolute;
  top: 64%;
  bottom: 0%;
  left: 57%;
  right: auto;
  transform: translate(-50%, -50%);
}

.stage {
  border-radius: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 255px;
  height: 255px;
  display: flex;
}

.banner-section-price {
  flex-direction: column;
  padding-top: 170px;
  padding-bottom: 80px;
  position: relative;
}

.banner-section-price.section-black {
  background-color: #171717;
  background-image: url('../images/Ellipses.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.white-text-description {
  color: #fff;
  font-size: 18px;
}

.header-wrapper-center {
  z-index: 5;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.header-wrapper-center.header-wrapper-center-max-width {
  align-self: center;
  max-width: 500px;
}

.pricing-plan-features {
  margin-top: 0;
}

.pricing-plan-list {
  grid-row-gap: 10px;
  -webkit-text-fill-color: transparent;
  background-color: #7987a1;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
}

.pricing-plan-list.white {
  background-color: #fff;
  margin-top: 20px;
}

.checklist-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.checklist-heading.dark {
  color: #180030;
}

.section-subtitle-top-price {
  grid-row-gap: 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 23px;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.toggle-bullet {
  cursor: pointer;
  background-color: #fff;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 6%;
}

.toggle {
  background-color: #180030;
  border-radius: 100px;
  width: 74px;
  height: 34px;
  min-height: 34px;
  position: relative;
}

.pricing-plan-price-wrapper {
  align-items: flex-start;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
}

.pricing-plan-currency-icon {
  color: #180030;
  margin-right: 2px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.pricing-plan-currency-icon.white-text {
  color: var(--white);
}

.title-wrapper-center {
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  display: flex;
}

.title-wrapper-center.title-wrapper-center-margin-bottom {
  grid-row-gap: 5px;
  align-self: center;
  margin-bottom: 40px;
}

.pricing-plan-list-item-purple {
  color: rgba(0, 0, 0, 0);
  background-image: url('../images/check-purpule.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 28px;
}

.pricing-list-item {
  background-image: url('../images/62582ffca17426dc7899ad90_webflow-clonable-bullet-white.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 28px;
  font-size: 17px;
  line-height: 26px;
}

.pricing-header {
  grid-column-gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 95px;
  display: grid;
}

.heading-price {
  color: #fff;
}

.heading-price.medium {
  color: rgba(255, 255, 255, .8);
}

.pricing-plan-price {
  font-size: 62px;
}

.pricing-plan-price.white-text {
  font-weight: 700;
}

.pricing-plan-item {
  background-color: #fbf7ff;
  border: 1px solid rgba(128, 0, 255, .2);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all .3s;
}

.pricing-plan-item:hover {
  transform: translate(0, -25px);
}

.pricing-plan-item.purple {
  background-color: #2b1343;
  border-radius: 20px;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  transform: translate(0, -45px);
}

.pricing-plan-item.purple:hover {
  transform: translate(0, -20px)translate(0, -45px);
}

.pricing-plan-item-title {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
  display: flex;
}

.pricing-plan-item-title.white-text {
  text-align: center;
}

.toggle-wrapper {
  grid-column-gap: 10px;
  align-self: center;
  align-items: center;
  display: flex;
}

.blog-banner-wrap {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  display: flex;
}

.sidebar-search-input {
  border: 1px solid rgba(24, 0, 48, .1);
  border-radius: 10px;
  width: 300px;
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  padding: 20px 16px;
}

.sidebar-search-input:focus {
  border-color: #8000ff;
}

.sidebar-search-input::placeholder {
  color: #7987a1;
  font-size: 16px;
}

.template-empty-state {
  color: #8000ff;
  background-color: rgba(0, 0, 0, 0);
  padding: 30px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.blog-sidebar-item {
  width: 100%;
  display: inline-block;
}

.sidebar-search-wrapper {
  grid-column-gap: 10px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

.blog-details-header-wrap {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 490px;
  padding-right: 50px;
  display: flex;
}

.post-with-sidebar {
  z-index: 5;
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.blog-sidebar-right {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.article {
  position: relative;
}

.blog-sidebar-post-image-link {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-sidebar-post-content {
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.blog-one-post-image {
  object-fit: cover;
  width: 100%;
  height: 395px;
}

.blog-sidebar-post-category {
  z-index: 5;
  color: #fff;
  background-color: #8000ff;
  border: 1px solid rgba(128, 0, 255, .1);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 5px 8px;
  font-size: 14px;
  line-height: 1.5em;
  transition: all .3s;
  display: inline-block;
  position: absolute;
  top: 10px;
  bottom: auto;
  left: 10px;
  right: auto;
}

.blog-sidebar-post-category:hover {
  color: #8000ff;
  background-color: #fff;
}

.date {
  font-size: 16px;
}

.sidebar-post-image {
  object-fit: cover;
  width: 100%;
  height: 180px;
}

.blog-sidebar-post-recent {
  z-index: 5;
  color: #8000ff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5em;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-recent:hover {
  color: #8000ff;
  background-color: #fff;
}

.flex-space-between {
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.blog-sidebar-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.blog-sidebar-left-wrapper, .collection-list-wrapper-blog-sidebar {
  width: 100%;
}

.blog-sidebar-left {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  column-count: 2;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  column-gap: 30px;
  display: grid;
}

.blog-image {
  object-fit: cover;
  transform-style: preserve-3d;
  border-radius: 8px;
  width: 100%;
  height: 200px;
  transition: all .3s;
}

.blog-image:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}

.banner-title-case-stadies {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 500px;
  display: flex;
}

.collection-study-cases-list {
  grid-column-gap: 50px;
  flex-direction: column;
  display: flex;
}

.text-block-span {
  color: #fff;
  text-align: left;
}

.start-project-form {
  grid-column-gap: 10px;
  width: 100%;
  display: flex;
}

.start-project-form.start-project-form-margin-top {
  margin-top: 15px;
}

.tab-projects {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(24, 0, 48, .2);
}

.tab-projects.w--current {
  color: #8000ff;
  background-color: rgba(0, 0, 0, 0);
}

.categories-wrap {
  width: 100%;
  margin-bottom: 50px;
}

.portfolio-grid-tabs {
  width: 100%;
  display: none;
}

.right-section {
  width: 50%;
}

.about-big-number-white {
  color: #fff;
  text-align: left;
  height: 100%;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 79px;
  font-weight: 700;
  line-height: 1;
}

.collection-list-wrapper-portfolio {
  width: 100%;
}

.success-messagewithout-background {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
}

.portfolio-grid-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.form-full {
  width: 100%;
}

.collection-study-cases-item {
  width: 100%;
  position: relative;
}

.collection-study-cases-item.first {
  margin-bottom: 50px;
}

.tabs-menu {
  justify-content: space-between;
  margin-bottom: 30px;
  display: flex;
}

.flex-vertical-form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.flex-vertical-form.flex-vertical-form-margin-top {
  background-color: #180030;
  border-radius: 10px;
  padding: 30px;
}

.left-section {
  width: 50%;
}

.project {
  grid-column-gap: 30px;
  background-color: #180030;
  border-radius: 10px;
  align-items: center;
  padding: 20px 40px;
  display: flex;
}

.portfolio-tab-link {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 30px;
  font-weight: 700;
}

.portfolio-tab-link.w--current {
  color: #8000ff;
  background-color: rgba(0, 0, 0, 0);
}

.portfolio-tab-link.all-projects {
  flex: 1;
  padding-left: 0;
}

.portfolio-tab-link.last-child {
  order: 1;
  padding-right: 0;
}

.tab-menu {
  grid-column-gap: 20px;
  margin-bottom: 50px;
  display: flex;
}

.collection-study-cases {
  width: 100%;
}

.collection-study-cases.gap {
  width: 100%;
  margin-top: 60px;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: center;
  width: 760px;
  display: flex;
}

.success-message-text {
  color: #8000ff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
}

.success-message-text.text-white {
  color: #fff;
}

.fields-wrap {
  grid-column-gap: 20px;
  width: 100%;
  display: flex;
}

.flex-contact-us-form {
  grid-column-gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.our-contacts-form {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.our-contacts-form-wrapper {
  background-color: #180030;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55%;
  min-height: 240px;
  margin-bottom: 0;
  padding: 40px;
  display: flex;
}

.heading-wrap-left {
  grid-row-gap: 5px;
  flex-direction: column;
  max-width: 310px;
  display: flex;
}

.location-three {
  opacity: 1;
  width: 30px;
  position: absolute;
  top: 298px;
  right: 52%;
}

.location-two {
  width: 30px;
  position: absolute;
  top: 237px;
  right: 40%;
}

.map-image {
  z-index: 8;
  opacity: .61;
  object-fit: fill;
  background-image: url('../images/map_1map.webp');
  background-position: 100%;
  background-size: auto;
  background-attachment: scroll;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.location-one {
  width: 30px;
  position: absolute;
  top: 99px;
  right: 38%;
}

.address, .office-info {
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.contacts-icon {
  color: #8000ff;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa Solid 900", sans-serif;
}

.dark-text-title {
  color: #180030;
  min-width: 90px;
  font-size: 17px;
  font-weight: 700;
  transition: all .2s;
}

.contacts-detail {
  padding-left: 4px;
  display: flex;
}

.dark-text {
  color: #180030;
  min-width: 90px;
  font-size: 17px;
  transition: all .2s;
}

.dark-text:hover {
  color: #8000ff;
}

.address-item {
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.paragraph-no-margin {
  color: #180030;
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-no-margin:hover {
  color: #8000ff;
}

.location-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  border-bottom: 1px solid rgba(24, 0, 48, .2);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 25px;
  display: grid;
}

.location-wrap.last {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 0;
}

.address-link:hover {
  color: #8000ff;
}

.our-team {
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  margin-bottom: 50px;
  display: flex;
}

.about-us-header-image {
  border-radius: 8px;
  width: 368px;
  position: absolute;
}

.about-us-header-image.bottom {
  z-index: 6;
  top: 280px;
  transform: rotate(6deg);
}

.about-us-header-image.top {
  z-index: 6;
  position: absolute;
  top: 130px;
  right: 61px;
  transform: rotate(-6deg);
}

.images-container {
  width: 560px;
  height: 500px;
  position: absolute;
  top: 6%;
  bottom: 0%;
  left: 56%;
  right: auto;
}

.button-video-wrap {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 182px;
  left: 85%;
}

.workflow-content-wrapper {
  z-index: 5;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
  display: flex;
  position: absolute;
}

.workflow-video {
  object-fit: cover;
  background-image: url('../images/lets-build_1lets build.webp');
  background-position: 1%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  min-height: 280px;
  display: flex;
  position: relative;
}

.workflow-video-wrapper {
  width: 100%;
  position: relative;
}

.text-span-block {
  background-image: url('../images/Underline_06.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.workflow-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.banner-text-video {
  color: #fff;
  max-width: 860px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1em;
}

.accordion-wrap-one-column {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.faq-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: flex-start;
  width: 100%;
  display: grid;
}

.subtitle-wrapper {
  display: flex;
}

.testimonials-card-wrapper {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
  position: relative;
}

.review-item-wrap-testimonials-page {
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 30px;
}

.review-item-wrap-testimonials-page.with-background {
  background-color: #fbf7ff;
  border-color: rgba(128, 0, 255, .2);
  width: 100%;
}

.block-quote {
  text-align: left;
  background-image: url('../images/Line.png');
  background-position: 0 0;
  background-size: auto;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.block-quote.max-width-large {
  background-image: none;
  max-width: 950px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.block-quote-wrapper {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.author-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: block;
}

.author-info {
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.faq-header {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.career-text-container {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 490px;
  display: flex;
}

.company-logo-white {
  opacity: 1;
  height: 40px;
}

.values-wrapper {
  grid-column-gap: 50px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.values-header-wrap {
  max-width: 400px;
}

.career-list-item-wrapper {
  grid-row-gap: 5px;
  background-color: rgba(128, 0, 255, .03);
  border: 1px solid rgba(128, 0, 255, .07);
  border-radius: 8px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
}

.career-collection-list-wrapper {
  width: 100%;
}

.career-position-wrapper {
  width: 220px;
}

.position {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}

.career-position {
  transition: color .2s;
}

.career-position:hover {
  color: #8000ff;
}

.career-location-wrapper {
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

.text-block-careers {
  display: none;
}

.career-location {
  color: #180030;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.career-type-wrapper {
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

.text-block-career {
  display: none;
}

.career-type {
  color: #180030;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.job-position-content-wrapper {
  width: 67%;
  padding-right: 70px;
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-sidebar-wrap.last-child {
  margin-bottom: 20px;
}

.job-position-wrapper {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.job-details-text {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 18px;
}

.job-position-sidebar-wrapper {
  background-color: #fbf7ff;
  border: 1px solid rgba(128, 0, 255, .07);
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 40%;
  padding: 30px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}

.job-position-icon {
  color: #8000ff;
  margin-right: 10px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 18px;
}

.job-position-icon.location {
  width: 18px;
  padding-left: 2px;
}

.rich-text-job-details {
  letter-spacing: -.05em;
}

.rich-text-job-details h2 {
  margin-bottom: 15px;
}

.rich-text-job-details h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-page-banner-text-wrap {
  max-width: 940px;
}

.h1-details-page {
  font-size: 60px;
}

.margin-top-link {
  margin-top: 20px;
}

.blog-post-page-banner-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 600px;
  margin-top: 50px;
}

.case-stady-text-block {
  border-bottom: 1px solid rgba(24, 0, 48, .2);
  margin-top: 20px;
  padding-bottom: 30px;
}

.study-case-project-name {
  transition: all .2s;
}

.study-case-project-name:hover {
  color: #8000ff;
}

.case-study-imag {
  object-fit: cover;
  width: 100%;
  height: 400px;
  transition: all .4s;
}

.case-study-imag:hover {
  transform: scale(1.1);
}

.stady-case-link {
  width: 100%;
}

.header-with-arrow {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 5px;
  display: flex;
}

.study-cases-image-link {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transition-property: all;
  overflow: hidden;
}

.project-page-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 500px;
}

.full-with-text-container {
  width: 100%;
}

.project-banner-text-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .6fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-bottom: 50px;
  display: grid;
}

.project-info {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.client-info {
  border: 1px solid rgba(24, 0, 48, .2);
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px 40px;
  display: flex;
}

.location-with-icon {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.services {
  padding-top: 10px;
  padding-bottom: 10px;
}

.services-used-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  padding-top: 10px;
  display: flex;
}

.servises-used-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.case-study-image {
  width: 18px;
  height: 18px;
}

.industry {
  grid-column-gap: 20px;
  border-bottom: 1px solid rgba(24, 0, 48, .2);
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.project-button-link {
  color: #180030;
  justify-content: center;
  width: 40%;
  padding: 20px;
  display: flex;
}

.project-button-link:hover {
  color: #8000ff;
}

.project-pagination-icon-wrapper {
  text-align: center;
  border-left: 1px solid rgba(24, 0, 48, .2);
  border-right: 1px solid rgba(24, 0, 48, .2);
  justify-content: center;
  align-items: center;
  width: 20%;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.project-pagination-wrapper {
  border-top: 1px solid rgba(24, 0, 48, .2);
  border-bottom: 1px solid rgba(24, 0, 48, .2);
  align-items: stretch;
  margin-bottom: 80px;
  display: flex;
}

.project-button-link-paragraph {
  font-size: 18px;
}

.project-next-button-link-icon {
  margin-top: 2px;
  margin-left: 15px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.project-prev-button-link-icon {
  margin-top: 2px;
  margin-right: 15px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.gallery-images.gallery-images-gap {
  margin-top: 30px;
}

.progect-gallery {
  grid-column-gap: 30px;
  width: 100%;
  display: flex;
}

.flex {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.gallery-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 280px;
}

.project-solutions-rich-text {
  width: 100%;
}

.gallery-image-item {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.project-result-grid-block {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.result-image {
  object-fit: cover;
  border-radius: 8px;
  height: 100%;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-details-content-wrapper {
  width: 100%;
}

.service-includes {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
  display: grid;
}

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

.rich-text-style-services {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.rich-text-style-services img {
  object-fit: cover;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style-services h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 28px;
}

.rich-text-style-services h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 45px;
}

.rich-text-style-services h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 36px;
}

.rich-text-style-services h5, .rich-text-style-services h6 {
  margin-top: 20px;
}

.rich-text-style-services ul {
  grid-column-gap: 30px;
  -webkit-text-fill-color: transparent;
  background-color: #180030;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style-services li {
  color: rgba(0, 0, 0, 0);
  background-image: url('../images/62582ffca17426dc7899ad90_webflow-clonable-bullet-white.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  border-bottom: 1px solid rgba(24, 0, 48, .2);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5em;
}

.rich-text-style-services figure {
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.services-used {
  color: var(--purple-dark-secondary);
  text-align: center;
  border: 1px solid rgba(43, 19, 67, .2);
  border-radius: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 6px 15px;
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}

.section-title-wrapp-working-process-2 {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  max-width: 460px;
  margin-bottom: 50px;
  padding-right: 50px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.landing-banner-title-wrapper {
  z-index: 3;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.landing-banner-image {
  z-index: 5;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.landing-inner-page-image {
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid rgba(24, 0, 48, .1);
}

.landing-inner-page-icon {
  z-index: 10;
  color: #fff;
  background-color: #8000ff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  display: flex;
  position: absolute;
}

.landing-home-pages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.title-center-landing {
  flex-direction: column;
  align-items: center;
  max-width: 550px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.landing-inner-page-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-inner-page-item {
  text-align: center;
  background-color: #8000ff;
  width: 100%;
  padding: 6px;
}

.landing-inner-page-item.home-screen {
  border-radius: 2px;
}

.landing-inner-page-title {
  color: #fff;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(24, 0, 48, .2);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.section-title-description {
  text-align: center;
  margin-top: 20px;
}

.landing-progress-bar-gray-line {
  background-color: #fbf7ff;
  border-radius: 10px;
  width: 100%;
  height: 15px;
}

.landing-progress-bar-100 {
  background-color: #8000ff;
  border-radius: 10px;
  width: 100%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-performance-grid {
  grid-column-gap: 120px;
  grid-row-gap: 60px;
  width: 100%;
}

.landing-progress-bar-wrapper {
  margin-top: 20px;
}

.landing-progress-bar-95 {
  background-color: #8000ff;
  border-radius: 10px;
  width: 95%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-88 {
  background-color: #8000ff;
  border-radius: 10px;
  width: 88%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-92 {
  background-color: #8000ff;
  border-radius: 10px;
  width: 92%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-number {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: auto;
  bottom: 35px;
  left: auto;
  right: 0%;
}

.landing-features-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feature-title {
  color: #fff;
  max-width: 70%;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.landing-feature-icon {
  color: #fff;
  background-color: rgba(255, 255, 255, .2);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-page-link {
  color: #180030;
}

.landing-page-link:hover {
  color: #fff;
}

.landing-inner-pages-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.landing-download-block-wrapper {
  background-color: #8000ff;
  background-image: url('../images/Frame-47.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 80px 75px 200px;
  display: flex;
}

.landing-download-block-wrap {
  max-width: 490px;
}

.landing-call-to-action {
  color: #fff;
  margin-bottom: 20px;
}

.landing-call-to-action-description {
  color: #fff;
  margin-bottom: 0;
}

.primary-button-white {
  color: #8000ff;
  text-align: center;
  letter-spacing: .5px;
  background-color: #fff;
  border: 1px solid #fff;
  align-items: center;
  padding: 16px 22px;
  transition: all .2s;
}

.primary-button-white:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.download-button-icon {
  margin-top: 4px;
  margin-right: 10px;
  font-family: "Fa Solid 900", sans-serif;
}

.nav-dropdown-link-wrap {
  text-transform: capitalize;
  align-items: center;
  width: 100%;
  min-width: 100%;
  margin-left: -42px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link-wrap:hover {
  color: #8000ff;
  margin-left: 0;
}

.nav-dropdown-link-wrap.w--current {
  color: #8000ff;
}

.collection-item {
  width: 100%;
}

.nav-dropdown-collection-link-item {
  color: #180030;
  text-transform: capitalize;
  align-items: center;
  width: 100%;
  min-width: 100%;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-collection-link-item:hover {
  color: #8000ff;
  margin-left: 0;
}

.nav-dropdown-collection-link-item.w--current {
  color: #8000ff;
}

.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;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  top: 40px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo-error-page {
  height: 42px;
}

._404-paragraph {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 50px;
}

.error-page-heading {
  color: #8000ff;
  font-size: 160px;
}

.utility-page-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.globe {
  background-image: url('../images/404-img.svg');
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: 102%;
  margin-left: 10px;
  padding-left: 80px;
  padding-right: 53px;
}

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

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

.password-image {
  width: 140px;
}

.password-input {
  border-radius: 8px;
  height: 48px;
  margin-bottom: 20px;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 1.5em;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px rgba(94, 94, 94, .5);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 300px;
  transition: all .2s;
}

.licensing-image:hover {
  transform: scale(1.05);
}

.licensing-title-wrapper {
  border-bottom: 1px rgba(94, 94, 94, .5);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.licensing-image-link:hover {
  opacity: 1;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-images-wrapper {
  border-top: 1px solid rgba(94, 94, 94, .5);
  width: 100%;
  padding-top: 40px;
}

.license-link {
  color: #180030;
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link.last-child {
  margin-right: 0;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.licensing-paragraph {
  width: 50%;
}

.licensing-icon-link-wrapper:hover {
  color: #180030;
}

.icon-style-guide {
  color: #8000ff;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 24px;
  line-height: 1em;
  transition: all .2s;
  display: inline-block;
}

.icon-style-guide:hover {
  color: #180030;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-icons-wrapper {
  grid-column-gap: 25px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}

.changelog-heading {
  text-align: center;
  margin-bottom: 20px;
}

.h6-link {
  color: var(--purple-dark-secondary);
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.1em;
  transition: all .3s;
}

.h6-link:hover {
  color: var(--primary);
}

.section-subtitle-block {
  color: #8000ff;
  background-color: rgba(128, 0, 255, .1);
  border-radius: 5px;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.section-subtitle-block.banner {
  align-self: center;
}

.section-subtitle-block.max-width {
  align-items: center;
  width: 280px;
}

.section-subtitle-block.left-mobile-center, .section-subtitle-block.left {
  align-self: flex-start;
}

.section-subtitle-block.center {
  align-self: center;
}

.hire-popup {
  z-index: 1000;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  top: auto;
  bottom: 5px;
  left: 5px;
  right: auto;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-paragraph {
  color: var(--white);
  letter-spacing: normal;
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-link {
  color: #fff;
  letter-spacing: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: underline;
  transition-property: none;
}

.hire-link:hover {
  opacity: 1;
  color: #fff;
  text-transform: none;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3em;
}

.hire-buttons:hover {
  color: rgba(255, 255, 255, .7);
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.more-templates {
  z-index: 100;
  color: #000;
  letter-spacing: normal;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 48px;
  left: auto;
  right: 12px;
}

.more-templates:hover {
  color: #000;
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

.buy-this-template {
  z-index: 1000;
  color: #000;
  letter-spacing: normal;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
}

.buy-this-template:hover {
  color: #000;
}

.text-orange {
  color: #f69c20;
}

@media screen and (min-width: 1280px) {
  .pages-banner {
    padding-top: 220px;
    padding-bottom: 130px;
  }

  .nav-container {
    padding-left: 50px;
  }

  .logo-header-image {
    width: 150px;
  }

  .button-primary.header {
    grid-column-gap: 50px;
    height: 91px;
  }

  .nav-dropdown-toggle {
    padding-left: 36px;
    padding-right: 20px;
  }

  .nav-menu {
    margin-left: -20px;
  }

  .nav-number {
    display: block;
  }

  .dark-arrow {
    width: 12px;
    height: 12px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: -121px;
  }

  .header-buttons-wrapper {
    grid-column-gap: 20px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.small-padding-bottom {
    padding-bottom: 90px;
  }

  .section.call-to-action-banner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .section.testimonials-section {
    max-height: 630px;
    overflow: hidden;
  }

  .section.additional-top-spacing {
    padding-top: 130px;
  }

  .section.with-logo {
    background-position: 50% 0;
    background-size: 60%;
  }

  .section.slider {
    padding-bottom: 210px;
  }

  .section.full-image-background {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .section.our-culture {
    position: relative;
    overflow: hidden;
  }

  .section.banner-about-us-second {
    padding-bottom: 80px;
  }

  .section.blog {
    padding-top: 190px;
    padding-bottom: 80px;
  }

  .section.contacts-banner {
    padding-top: 220px;
  }

  .section.our-team-banner {
    padding-bottom: 136px;
  }

  .section.banner-faq, .section.job-position-banner {
    padding-top: 220px;
  }

  .section.blog-post-page {
    padding-top: 190px;
    padding-bottom: 80px;
  }

  .section.project-banner {
    padding-top: 220px;
    padding-bottom: 80px;
  }

  .section.without-top-space-small-bottom {
    padding-bottom: 80px;
  }

  .section.landing-banner {
    padding-top: 200px;
  }

  .section.banner-dark, .section.changelog-banner {
    padding-top: 220px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .paragraph-large.max-with-half-section {
    max-width: 600px;
  }

  .style-guide-buttons-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 30px;
    flex-wrap: nowrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .logo-footer-image {
    width: 150px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .footer {
    padding-top: 130px;
  }

  .footer-brand-wrapper {
    width: 21%;
  }

  .button-primary-header.header {
    grid-column-gap: 50px;
    height: 91px;
  }

  .button-primary-header.burger-list {
    grid-column-gap: 40px;
    height: 91px;
  }

  .banner-text-wrapper {
    display: flex;
  }

  .banner-text-wrapper.max-width {
    max-width: 530px;
  }

  .h1-home {
    font-size: 80px;
  }

  .home-banner-section {
    min-height: 730px;
    padding-bottom: 100px;
  }

  .grid-2-columns {
    grid-template-columns: 750px 1fr;
  }

  .grid-2-columns.why-choose-us {
    grid-template-columns: 1fr .75fr;
  }

  .big-text {
    font-size: 48px;
  }

  .big-text.margin-top-section-space {
    margin-top: 130px;
    font-size: 48px;
  }

  .big-text.dark-center {
    max-width: 1100px;
  }

  .dark-background-with-logo.big-text {
    padding-bottom: 130px;
  }

  .other-services-collection-list {
    grid-column-gap: 60px;
  }

  .service-description {
    margin-bottom: 30px;
  }

  .color {
    height: 78px;
  }

  .color.light-100 {
    height: 150px;
  }

  .colors-block-with-button {
    top: -150px;
  }

  .banner-text {
    font-size: 100px;
  }

  .work-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .header-banner-wrap {
    margin-right: auto;
  }

  .h2 {
    font-size: 80px;
  }

  .project-image-full {
    height: 300px;
  }

  .testimonials-header-wrap {
    padding-top: 130px;
    padding-bottom: 130px;
    padding-right: 50px;
  }

  .reviews-wrapper-column {
    width: 320px;
  }

  .reviews-wrapper-column.second {
    flex-direction: column;
    display: flex;
  }

  .reviews-general-wrapper {
    grid-column-gap: 30px;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0;
  }

  .images-gallery {
    margin-top: 80px;
  }

  .images-gallery.margin-top-large {
    margin-top: 70px;
  }

  .text-wrap-center-block-call-to-action {
    max-width: 1000px;
  }

  .call-to-action-block-gradient {
    width: 1000px;
    height: 650px;
  }

  .call-to-action-banner-heading {
    font-size: 100px;
  }

  .headline {
    text-align: left;
    font-size: 100px;
  }

  .logo-background {
    top: 25%;
  }

  .logo-background.right {
    right: -26%;
  }

  .home-second-banner-text-wrap {
    flex-direction: column;
    max-width: 700px;
    display: flex;
  }

  .home-second-banner-images-line {
    margin-top: 80px;
    transform: none;
  }

  .logo {
    display: none;
  }

  .vertical-line {
    margin-left: 30px;
    margin-right: 30px;
  }

  .services-gradient {
    filter: blur(180px);
  }

  .flex-horizontal {
    grid-column-gap: 80px;
  }

  .big-text-dark {
    font-size: 58px;
  }

  .figure-background.circle {
    top: 17%;
    right: -3%;
  }

  .home-2-services-list {
    grid-row-gap: 70px;
  }

  .section-subtitle-white-background.white {
    align-items: center;
  }

  .home-2-service-title {
    font-size: 100px;
  }

  .text-wrapper-center {
    max-width: 950px;
  }

  .text-description-white-center {
    font-size: 18px;
    line-height: 1.5em;
  }

  .slider-our-work-slide {
    width: 52%;
    min-height: 541px;
  }

  .project-image {
    height: 300px;
  }

  .home-2-cta-wrap {
    max-width: 910px;
  }

  .home-2-call-to-action-heading {
    font-size: 100px;
  }

  .gradient-header {
    filter: blur(160px);
    width: 900px;
    height: 900px;
  }

  .company-logo-wrap {
    flex-direction: row;
  }

  .banner-section-home-3 {
    padding-bottom: 130px;
  }

  .banner-section-home-3.section-black {
    background-size: 2050px;
    padding-top: 150px;
  }

  .home-3-banner-header-description {
    max-width: none;
  }

  .banner-header-3-grid {
    grid-template-columns: 1fr .75fr 1.15fr;
  }

  .big-text-medium {
    font-size: 60px;
  }

  .home-3-service-item {
    grid-column-gap: 50px;
    align-items: flex-start;
  }

  .home-3-service-heading {
    max-width: 800px;
    font-size: 80px;
  }

  .services-dash-line {
    height: 240px;
    top: 80px;
    left: 15px;
  }

  .dark-bg-with-logo-not-fixed.big-text {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .banner-section {
    padding-bottom: 130px;
  }

  .home-3-text-container {
    max-width: 723px;
  }

  .home-4-image-absolute {
    width: 400px;
    bottom: 32%;
  }

  .logos-block-wrap {
    flex-direction: row;
    width: auto;
    margin-right: 330px;
    padding-right: 60px;
  }

  .logos-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .company-logo-image.home-4 {
    width: 100%;
  }

  .home-4-services-item {
    height: 100%;
  }

  .home-4-services-wrap {
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .big-text-home-4 {
    font-size: 60px;
  }

  .logo-background-about-us {
    left: -51%;
  }

  .logo-background-about-us.right {
    top: 40%;
    right: -29%;
  }

  .top-section-image-background {
    height: 118px;
  }

  .logo-backgroundg-our-culture {
    top: 25%;
  }

  .big-text-about {
    font-size: 60px;
  }

  .our-culture-list {
    grid-row-gap: 80px;
  }

  .logo-background-our-culture {
    top: 25%;
  }

  .logo-background-our-culture.right {
    right: -26%;
  }

  .gradient-background {
    filter: blur(160px);
    width: 1400px;
    height: 600px;
    top: auto;
    right: 0%;
  }

  .images-block {
    margin-top: 80px;
  }

  .features-flex-wrap {
    grid-row-gap: 100px;
    width: 100%;
  }

  .feature-image-wrap.right {
    width: 635px;
  }

  .worker-photo {
    height: 400px;
  }

  .banner-image-full {
    height: 340px;
    bottom: -120px;
  }

  .our-advantages {
    grid-column-gap: 30px;
    display: flex;
  }

  .advantage-item {
    text-align: left;
  }

  .advantage-wrap {
    flex-direction: row;
  }

  .about-big-number {
    color: #180030;
  }

  .about-2-counter-item {
    grid-template-columns: .25fr 1fr;
  }

  .about-2-counter-item.first {
    grid-template-columns: .75fr 1fr;
  }

  .max-width-block {
    min-width: 440px;
  }

  .about-us-services-section-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .accordion-item {
    background-color: rgba(128, 0, 255, .03);
  }

  .accordion-item.service {
    min-width: 670px;
  }

  .our-mission {
    max-width: 510px;
  }

  .our-values {
    width: 400px;
    height: 560px;
    bottom: 32%;
  }

  .our-advantages-wrapper {
    grid-column-gap: 80px;
    justify-content: center;
  }

  .our-advantages-heading-wrap {
    width: 290px;
  }

  .purpule {
    color: #8000ff;
  }

  .our-advantage-item-wrap {
    grid-row-gap: 5px;
    flex-direction: column;
    max-width: 610px;
    display: flex;
  }

  .success-message {
    color: #e9e9e9;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 0;
  }

  .service-list-wrapper {
    grid-column-gap: 80px;
    grid-template-columns: .5fr .75fr;
  }

  .arrow-container {
    margin-top: 15px;
  }

  .flex-stages {
    grid-column-gap: 50px;
  }

  .section-title-wrapp-working-process {
    padding-right: 80px;
  }

  .process-item {
    padding: 30px;
  }

  .gradient-services {
    filter: blur(160px);
    width: 900px;
    height: 900px;
  }

  .stage {
    width: 260px;
    height: 260px;
  }

  .banner-section-price {
    padding-bottom: 130px;
  }

  .banner-section-price.section-black {
    background-size: auto;
    padding-top: 220px;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-one-post-image {
    height: 500px;
  }

  .sidebar-post-image {
    height: 220px;
  }

  .blog-sidebar-wrapper {
    grid-column-gap: 50px;
  }

  .blog-sidebar-left {
    grid-row-gap: 50px;
  }

  .collection-study-cases.gap {
    margin-top: 80px;
  }

  .success-message-text {
    color: #e9e9e9;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 0;
  }

  .heading-wrap-left {
    max-width: 360px;
  }

  .location-three {
    right: 43%;
  }

  .location-two {
    right: 34%;
  }

  .location-one {
    right: 31%;
  }

  .about-us-header-image.bottom {
    width: 400px;
    top: 230px;
  }

  .about-us-header-image.top {
    width: 400px;
    right: 1px;
  }

  .images-container {
    width: 580px;
    left: 51%;
    right: auto;
  }

  .button-video-wrap {
    bottom: 160px;
    left: 72%;
  }

  .workflow-content-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 80px;
  }

  .workflow-video-wrapper {
    max-height: none;
  }

  .workflow-wrapper {
    position: relative;
  }

  .testimonials-card-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .faq-header {
    text-align: center;
  }

  .blog-post-page-banner-text-wrap {
    max-width: 1090px;
  }

  .h1-details-page {
    font-size: 70px;
  }

  .case-study-imag {
    object-fit: cover;
    width: 100%;
    height: 400px;
  }

  .study-cases-image-link {
    width: 100%;
  }

  .project-banner-text-wrap {
    grid-column-gap: 60px;
    grid-template-columns: 1fr .6fr;
    margin-bottom: 60px;
  }

  .project-info {
    grid-column-gap: 60px;
  }

  .project-pagination-wrapper {
    margin-bottom: 130px;
  }

  .flex, .project-result-grid-block {
    grid-column-gap: 60px;
  }

  .service-image {
    border-radius: 10px;
  }

  .section-title-wrapp-working-process-2 {
    padding-right: 80px;
  }

  .landing-features-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .error-page-heading {
    font-size: 180px;
  }
}

@media screen and (min-width: 1440px) {
  .logo-header-image {
    width: 150px;
  }

  .button-primary.header {
    grid-column-gap: 80px;
  }

  .nav-dropdown-toggle {
    padding-left: 25px;
    padding-right: 25px;
  }

  .nav-menu {
    margin-left: -20px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: -6px;
  }

  .header-buttons-wrapper {
    grid-column-gap: 30px;
  }

  .section.banner-second-home {
    transform: translate(0);
  }

  .section.with-logo {
    background-size: 54%;
  }

  .section.about-us-banner-section {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .section.banner-about-us-second {
    padding-top: 150px;
  }

  .section.tablet-without-botom-space {
    padding-bottom: 130px;
  }

  .logo-footer-image {
    width: 150px;
  }

  .button-primary-header.header, .button-primary-header.burger-list {
    grid-column-gap: 80px;
  }

  .banner-text-wrapper.max-width {
    align-items: flex-start;
  }

  .h1-home {
    font-size: 84px;
  }

  .grid-2-columns {
    grid-template-columns: 2.7fr 1fr;
  }

  .other-services-collection-list {
    grid-column-gap: 80px;
  }

  .project-image-full {
    height: 380px;
  }

  .testimonials-header-wrap {
    max-width: 480px;
    padding-right: 0;
  }

  .reviews-general-wrapper {
    right: -30px;
  }

  .images-gallery {
    margin-top: 100px;
  }

  .logo-background.right {
    right: -10%;
  }

  .logo-background.left {
    left: -40%;
  }

  .home-second-banner-images-line {
    margin-top: 100px;
    transform: none;
  }

  .logo {
    margin-right: 10px;
    display: none;
  }

  .figure-background {
    bottom: 37%;
  }

  .figure-background.circle {
    top: 29%;
    right: -5%;
  }

  .figure-background.figure {
    bottom: 7%;
  }

  .home-2-service-title {
    max-width: 880px;
  }

  .base-container-right.large-right {
    width: 100%;
    max-width: 1300px;
  }

  .slider-our-work-slide {
    min-height: 620px;
  }

  .project-image {
    height: 380px;
  }

  .scroll-down-arrow {
    margin-top: 35px;
  }

  .h1-home-3 {
    max-width: 800px;
    font-size: 80px;
  }

  .banner-section-home-3.section-black {
    padding-top: 130px;
  }

  .home-3-banner-header-description {
    margin-top: 40px;
  }

  .banner-header-3-grid {
    align-items: center;
  }

  .service-icon-home-3 {
    margin-top: 20px;
  }

  .services-dash-line {
    top: 85px;
  }

  .banner-section {
    padding-bottom: 100px;
  }

  .banner-section.career {
    padding-bottom: 130px;
  }

  .home-4-image-absolute {
    object-fit: cover;
    width: 500px;
    height: 630px;
    bottom: 0%;
  }

  .logos-block-wrap {
    margin-right: 366px;
  }

  .fixed-width-block {
    margin-right: 50px;
  }

  .logo-background-about-us {
    top: 56%;
    left: -54%;
  }

  .top-section-image-background {
    height: auto;
  }

  .logo-backgroundg-our-culture.left {
    left: -40%;
  }

  .logo-background-our-culture.right {
    right: -10%;
  }

  .gradient-background {
    width: 1600px;
  }

  .subtitle-wrap.subtitle-wrap-margin-top {
    padding-top: 40px;
  }

  .images-block {
    margin-top: 100px;
  }

  .banner-image-full {
    height: 340px;
  }

  .our-values {
    object-fit: cover;
    width: 500px;
    height: 630px;
    bottom: 0%;
  }

  .service-list-wrapper {
    grid-template-columns: .6fr 1fr;
  }

  .map-image {
    width: 65%;
  }

  .about-us-header-image.bottom {
    width: 399px;
  }

  .about-us-header-image.top {
    width: 393px;
    right: 83px;
  }

  .images-container {
    width: 700px;
    right: -1%;
  }
}

@media screen and (min-width: 1920px) {
  .nav-container {
    padding-left: 80px;
  }

  .logo-header-image {
    width: 150px;
  }

  .button-primary {
    border-color: var(--primary);
    background-color: var(--primary);
  }

  .button-primary:hover {
    border-color: var(--primary);
  }

  .button-primary.header {
    grid-column-gap: 125px;
    background-color: var(--primary);
  }

  .button-primary.margin-top-button-large {
    display: none;
  }

  .nav-menu {
    margin-left: -20px;
  }

  .nav-link-header:hover {
    color: var(--primary);
  }

  .section.testimonials-section {
    overflow: hidden;
  }

  .section.banner-second-home {
    padding-top: 190px;
  }

  .section.with-logo {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section.primary-bg-copy {
    background-color: var(--primary);
  }

  .section.about-us-banner-section {
    padding-top: 200px;
    padding-bottom: 180px;
  }

  .section.our-culture {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }

  .section.banner-about-us-second {
    background-color: #fff;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .section.portfolio-grid-banner {
    background-position: 50% 122%;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: 190px;
    padding-bottom: 100px;
  }

  .section.blog {
    background-position: 50% -10%;
    padding-top: 220px;
  }

  .section.dark-background-map {
    background-image: none;
    flex-direction: row;
    align-items: center;
    min-height: 500px;
    display: flex;
  }

  .section.blog-post-page {
    padding-top: 220px;
  }

  .section.dark-background-overflow-hidden {
    background-color: var(--purple-light-secondary);
  }

  .button-primary-white.margin-top-button {
    border-color: var(--primary);
  }

  .button-primary-white.margin-top-button:hover {
    background-color: var(--primary);
  }

  .button-secondary {
    border-color: var(--primary);
  }

  .button-secondary:hover {
    background-color: var(--primary);
  }

  .logo-footer-image {
    width: 150px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .footer {
    background-color: var(--purple-dark-secondary);
    padding-top: 85px;
  }

  .button-primary-header.header, .button-primary-header.burger-list {
    grid-column-gap: 125px;
  }

  .banner-text-wrapper.max-width {
    justify-content: flex-start;
  }

  .banner-logo {
    margin-bottom: 50px;
  }

  .h1-home, .h1-home.white-text {
    font-size: 100px;
  }

  .big-number.left {
    color: var(--primary);
  }

  .button-primary-call-to-action {
    border-color: var(--primary);
    background-color: var(--primary);
  }

  .button-primary-call-to-action:hover {
    border-color: var(--primary);
  }

  .section-subtitle.left-mobile-center, .section-subtitle.tablet-center {
    color: var(--primary);
    background-color: rgba(255, 133, 48, .1);
  }

  .grid-2-columns.why-choose-us {
    grid-template-columns: 1fr .75fr;
  }

  .big-text.dark-center {
    text-transform: none;
    max-width: none;
  }

  .title-center.row-15-gap {
    grid-row-gap: 5px;
  }

  .categories {
    margin-top: 15px;
  }

  .category {
    align-items: flex-end;
  }

  .reviews-wrapper-column {
    width: 370px;
  }

  .reviews-general-wrapper {
    margin-right: -100px;
    right: -100px;
  }

  .images-gallery {
    padding-top: 38px;
  }

  .images-gallery.margin-top-large {
    z-index: 100;
    height: 380px;
  }

  .call-to-action-logo-background.right {
    right: -15%;
  }

  .call-to-action-logo-background.left {
    object-fit: contain;
    width: 900px;
    top: 22%;
    left: -26%;
  }

  .call-to-action-image {
    height: 400px;
  }

  .underline {
    background-image: url('../images/underline.svg');
    background-position: 100% 98%;
  }

  .call-to-action-image-second {
    height: 360px;
  }

  .call-to-action-block-gradient {
    width: 1500px;
    left: 13%;
  }

  .home-second-image-wrap {
    padding-top: 6px;
  }

  .home-second-header-description {
    color: var(--black);
  }

  .headline {
    color: var(--primary);
  }

  .logo-background.right {
    right: -3%;
  }

  .logo-background.left {
    z-index: -1;
    left: -6%;
  }

  .home-second-banner-images-line {
    transform: none;
  }

  .purple-text {
    color: var(--purple-dark-secondary);
  }

  .box-gallery-image-home {
    height: 360px;
  }

  .logo {
    display: none;
  }

  .banner-gradient {
    background-image: radial-gradient(circle, rgba(128, 0, 255, 0.1), #fff);
    height: 500px;
    bottom: 0%;
    left: 10%;
    right: 0%;
  }

  .services-gradient {
    filter: blur(180px);
    height: 500px;
    bottom: 0%;
    left: 10%;
    right: 0%;
  }

  .big-text-dark {
    color: var(--purple-dark-secondary);
  }

  .figure-background.globe-service {
    top: 50px;
    left: -5%;
  }

  .home-2-service-title {
    max-width: 930px;
  }

  .base-container-right.large-right {
    max-width: 1550px;
  }

  .slider-our-work-slide {
    width: 55%;
    min-height: 610px;
  }

  .mask-slider {
    overflow: hidden;
  }

  .call-to-action-description {
    color: var(--paragraph);
  }

  .colors-block-background {
    display: none;
  }

  .home-2-call-to-action-heading {
    color: var(--black);
  }

  .h1-home-3 {
    max-width: 820px;
    font-size: 100px;
  }

  .banner-section-home-3.section-black {
    background-position: 50% 0;
    height: auto;
    padding-top: 0;
  }

  .banner-header-3-grid {
    align-content: end;
    align-items: end;
    height: 100vh;
  }

  .home-4-image-absolute {
    object-fit: cover;
    width: 530px;
  }

  .logos-block-wrap {
    flex-direction: row;
    max-width: 969px;
    margin-right: 200px;
  }

  .fixed-width-block {
    max-width: 250px;
  }

  .logos-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 0;
  }

  .logo-background-about-us {
    left: -33%;
  }

  .logo-background-about-us.right {
    right: -3%;
  }

  .logo-backgroundg-our-culture.left {
    display: none;
    left: -27%;
  }

  .logo-background-our-culture.right {
    display: none;
    top: 39%;
    right: -3%;
  }

  .subtitle-wrap.subtitle-wrap-margin-top {
    padding-top: 60px;
  }

  .banner-image-full {
    height: 440px;
    bottom: -140px;
  }

  .banner-inner-flex {
    grid-column-gap: 60px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .banner-inner-flex.max-height {
    height: 300px;
  }

  .advantage-image, .advantage-image-first {
    transform: none;
  }

  .about-2-counter-grid {
    grid-template-columns: 1fr;
  }

  .about-2-counter-item {
    grid-template-columns: .5fr 1fr;
  }

  .about-2-counter-item.first {
    grid-template-columns: .75fr 1fr;
  }

  .faq-button-wrap.about {
    border-width: 0;
  }

  .accordion-item.service {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .our-values {
    object-fit: cover;
    width: 530px;
  }

  .img-company {
    width: 570px;
  }

  .video-block {
    opacity: 1;
  }

  .working-process-wrap {
    justify-content: space-between;
  }

  .banner-section-price.section-black {
    background-position: 50% 0;
  }

  .toggle-bullet {
    cursor: pointer;
  }

  .blog-sidebar-left {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .location-three {
    top: 404px;
    right: 43%;
  }

  .location-two {
    top: 325px;
    right: 34%;
  }

  .map-image {
    background-position: 100%;
    background-size: 220%;
    width: 70%;
  }

  .location-one {
    right: 29%;
  }

  .faq-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
  }

  .subtitle-wrapper {
    display: flex;
  }

  .rich-text-style-services {
    flex-direction: column;
  }

  .rich-text-style-services li {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 65px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 24px;
  }

  .pages-banner {
    min-height: 300px;
    padding-top: 140px;
  }

  .base-container.without-padding {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-dropdown-column {
    flex-direction: column;
    justify-content: center;
    width: 180px;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 18px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
    padding: 0 20px 0 0;
  }

  .logo-header-image {
    width: 130px;
  }

  .button-primary {
    display: flex;
  }

  .button-primary.header {
    height: 60px;
    display: none;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .burger-menu-button-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
  }

  .menu-wrap {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: relative;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

  .nav-menu {
    background-color: #fff;
    flex-direction: column;
    width: 320px;
    margin-left: 0;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .nav-item-title.white-link {
    color: #180030;
  }

  .brand-tablet {
    display: block;
  }

  .nav-number {
    display: none;
  }

  .menu-button {
    text-align: right;
    background-color: rgba(0, 0, 0, 0);
    padding: 0 0 0 10px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .arrow-button.service {
    height: 12px;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .navbar-absolute-white {
    height: 60px;
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-link-header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: 320px;
    padding: 0 40px 0 20px;
    display: none;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: 320px;
    height: 270px;
    padding-right: 40px;
    display: none;
    overflow: scroll;
  }

  .header-buttons-wrapper {
    margin-left: auto;
  }

  .nav-dropdown-icon {
    color: var(--purple-dark-secondary);
    margin-right: 1.5px;
    display: block;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0;
  }

  .image-burger {
    margin-bottom: 4px;
  }

  .arrows-container.call-to-action {
    width: 16px;
    height: 16px;
  }

  .grid-system {
    width: 100%;
  }

  .section.call-to-action-banner {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .section.testimonials-section {
    max-height: none;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .section.banner-second-home {
    padding-top: 140px;
  }

  .section.additional-top-spacing {
    padding-top: 80px;
  }

  .section.about-us-banner-section {
    padding-top: 120px;
    padding-bottom: 160px;
  }

  .section.banner-about-us-second {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .section.portfolio-grid-banner {
    min-height: 300px;
    padding-top: 140px;
  }

  .section.blog {
    padding-top: 120px;
  }

  .section.contacts-banner {
    padding-top: 140px;
  }

  .section.our-team-banner {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 131px;
  }

  .section.banner-faq, .section.job-position-banner {
    padding-top: 140px;
  }

  .section.blog-post-page {
    padding-top: 120px;
  }

  .section.project-banner {
    padding-top: 140px;
  }

  .section.landing-banner {
    padding-top: 120px;
  }

  .section.banner-dark, .section.changelog-banner {
    padding-top: 140px;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .spacing-system-title {
    font-size: 25px;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spacing-system-image {
    width: 75%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .bottom-style-spacing-desktop, .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .colors-container {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .style-guide-subtitle {
    margin-bottom: 0;
  }

  .style-guide-body-wrapper, .headings-typography-wrapper {
    width: 100%;
  }

  .h3-tablet {
    font-size: 40px;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: nowrap;
  }

  .paragraph-large.tablet-center {
    text-align: center;
  }

  .button-primary-with-arrow {
    display: flex;
  }

  .button-primary-with-arrow.burger-list {
    margin-top: 40px;
    display: flex;
  }

  .button-primary-with-arrow.call-to-action-small-gap {
    grid-column-gap: 50px;
  }

  .style-guide-buttons-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .button-primary-white {
    align-self: flex-start;
    display: flex;
    position: static;
  }

  .button-primary-white.margin-top-button {
    align-self: center;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .footer-address {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-footer-image {
    width: 130px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-wrapper {
    align-items: center;
  }

  .footer-link, .white-text.footer-links-header {
    text-align: center;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-social-icons-wrapper {
    margin-top: 20px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .button-primary-header {
    display: flex;
  }

  .button-primary-header.header {
    height: 60px;
    display: none;
  }

  .button-primary-header.burger-list {
    grid-column-gap: 50px;
    height: 60px;
    display: flex;
  }

  .button-primary-header.burger-list:hover {
    border-style: solid;
    border-width: 1px;
  }

  .white-link {
    color: #180030;
  }

  .navbar-absolute-transparent {
    height: 60px;
    display: flex;
  }

  .banner-text-wrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-text-wrapper.max-width {
    align-self: center;
    align-items: center;
    max-width: 73%;
    margin-bottom: 50px;
  }

  .banner-header-description {
    margin-bottom: 40px;
  }

  .h1-home {
    font-weight: 700;
  }

  .home-banner-section {
    height: auto;
    padding-top: 140px;
  }

  .banner-buttons-wrap.home-2 {
    margin-top: 40px;
  }

  .section-logos.gray {
    margin-top: 15px;
  }

  .big-number {
    color: #8000ff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5em;
  }

  .big-number.left, .button-primary-call-to-action {
    display: flex;
  }

  .button-primary-call-to-action.margin-top-35, .button-primary-call-to-action.space-mobile-center {
    margin-top: 25px;
  }

  .section-subtitle {
    align-self: flex-start;
  }

  .section-subtitle.banner {
    align-self: center;
  }

  .section-subtitle.left-mobile-center {
    align-self: flex-start;
  }

  .section-subtitle.tablet-center {
    align-self: center;
  }

  .section-subtitle.left {
    align-self: flex-start;
  }

  .button-wrap {
    flex: none;
  }

  .statistics-wrap-item.without-padding {
    grid-column-gap: 15px;
    flex-direction: column;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
  }

  .grid-2-columns.why-choose-us {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .statistic-wrap.flex-horizontal {
    flex-direction: row;
    width: 100%;
    padding-top: 0;
  }

  .flex-vertical {
    max-width: 572px;
  }

  .flex-vertical.row-15 {
    max-width: 100%;
  }

  .flex-vertical.services-text {
    align-items: center;
    max-width: 83%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-item.white {
    border: 1px solid rgba(23, 23, 23, .05);
  }

  .big-text {
    font-size: 36px;
  }

  .big-text.margin-top-section-space {
    margin-top: 100px;
  }

  .big-text.dark-center {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-center {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .services-collection.home-2 {
    max-width: 100%;
  }

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

  .services-list.left-column {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .services-list.right-column {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .other-services-collection-list {
    margin-top: 0;
  }

  .section-title-wrapp {
    align-items: center;
  }

  .section-title-wrapp.full {
    max-width: none;
  }

  .color {
    height: 68px;
  }

  .color.light-100 {
    height: 100px;
  }

  .colors-block-with-button {
    width: 260px;
    top: -80px;
  }

  .banner-text-description {
    max-width: 369px;
  }

  .banner-text {
    font-size: 80px;
  }

  .dark-arrow-service.small {
    width: 16px;
    height: 16px;
  }

  .title-flex.space-between {
    align-items: flex-end;
  }

  .work-list {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .h2 {
    font-size: 50px;
  }

  .categories {
    flex-wrap: wrap;
  }

  .review-item-wrap {
    width: 370px;
  }

  .testimonials-header-wrap {
    max-width: 100%;
    padding: 80px 15px 40px;
  }

  .testimonials-section-wrap {
    flex-direction: column;
    max-width: 100%;
    max-height: none;
  }

  .reviews-wrapper-column {
    flex-flow: wrap;
    width: 3000px;
    display: none;
  }

  .reviews-wrapper-column.second {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    width: 2400px;
    padding-top: 0;
    padding-left: 0;
    display: flex;
  }

  .reviews-general-wrapper {
    flex-direction: column;
    width: 100%;
    display: flex;
    overflow: hidden;
  }

  .images-gallery {
    height: 276px;
  }

  .images-gallery.margin-top-large {
    margin-top: 50px;
  }

  .call-to-action-image-second {
    height: 300px;
  }

  .call-to-action-banner-heading {
    font-size: 80px;
  }

  .headline {
    font-weight: 700;
  }

  .logo-background.left {
    left: -60%;
  }

  .home-second-banner-images-line {
    margin-top: 50px;
    transform: translate(-253px);
  }

  .box-gallery-image-home {
    height: 300px;
  }

  .home-2-banner-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-wrapper-home-second {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-wrap-with-button {
    object-fit: cover;
    height: 100%;
  }

  .banner-home-second-grid {
    grid-row-gap: 40px;
    grid-template-columns: .9fr 1fr;
    height: 660px;
    display: grid;
  }

  .text-max-with {
    width: auto;
  }

  .flex-horizontal {
    flex-direction: column;
  }

  .flex-horizontal.study-cases {
    grid-column-gap: 40px;
    flex-direction: column-reverse;
  }

  .home-second-services {
    flex-direction: column;
    max-width: 100%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .arrow-button-icon.service {
    height: 12px;
  }

  .home-2-service-title {
    max-width: 660px;
    font-size: 60px;
  }

  .reviews-wrapper-row {
    flex-flow: wrap;
    width: 3000px;
  }

  .slider-our-work {
    width: 100%;
    margin-top: 40px;
  }

  .base-container-right.large-right {
    padding-left: 15px;
  }

  .base-container-right.without-padding {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-our-work-slide {
    width: 80%;
    min-height: 487px;
  }

  .button-primary-w {
    align-self: flex-start;
    display: flex;
    position: static;
  }

  .home-2-cta-wrap {
    max-width: 600px;
  }

  .home-2-call-to-action-heading {
    letter-spacing: -.05em;
    font-size: 80px;
  }

  .scroll-down-arrow {
    height: 48px;
    margin-top: 10px;
  }

  .company-logo-wrap {
    grid-column-gap: 50px;
  }

  .banner-section-home-3, .banner-section-home-3.section-black {
    padding-top: 140px;
  }

  .home-3-banner-header-description {
    font-size: 18px;
  }

  .banner-header-3-grid {
    width: 90%;
  }

  .big-text-medium {
    font-size: 40px;
  }

  .content-wrapper-flex {
    grid-row-gap: 30px;
  }

  .home-3-service-heading {
    font-size: 50px;
  }

  .services-dash-line {
    height: 170px;
  }

  .subtitle-wrapp {
    align-items: center;
    max-width: none;
  }

  .banner-section {
    padding-top: 140px;
    padding-bottom: 50px;
  }

  .banner-section.career {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .home-4-image-absolute {
    object-fit: cover;
    width: 100%;
    height: 400px;
    position: relative;
  }

  .logos-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .home-4-services-collection {
    display: flex;
  }

  .home-4-services-item {
    min-height: auto;
  }

  .text-wrap-max-width {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .home-4-services-wrap {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .folder {
    object-fit: fill;
    width: 100%;
    display: block;
  }

  .link-with-arrow-bottom-white, .link-with-arrow-bottom {
    display: flex;
  }

  .section-title-wrapper {
    margin-right: 0;
  }

  .big-text-home-4 {
    font-size: 40px;
  }

  .top-section-image-background {
    object-fit: cover;
  }

  .logo-backgroundg-our-culture.left {
    left: -60%;
  }

  .big-text-about {
    font-size: 40px;
  }

  .feature-text-wrap {
    max-width: 386px;
  }

  .feature-image-wrap {
    width: 342px;
  }

  .feature-image-wrap.right {
    height: 399px;
  }

  .flex-align-center {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .about-company {
    margin-right: 0;
  }

  .text-block-wrap {
    max-width: 100%;
  }

  .team-collection {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-collection.margin-top-team-collection {
    grid-row-gap: 30px;
  }

  .text-wrap-flex.space-between {
    flex-direction: column;
  }

  .worker-photo {
    object-fit: cover;
    width: 100%;
    height: 460px;
  }

  .banner-image-full {
    width: 100%;
    height: 350px;
    position: relative;
    bottom: -50%;
  }

  .banner-inner-flex {
    flex-direction: column;
  }

  .tablet-center {
    text-align: center;
  }

  .about-2-counter-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .about-2-counter-item {
    grid-template-columns: 1fr;
  }

  .about-2-counter-item.first {
    grid-row-gap: 20px;
    border-bottom-width: 0;
    grid-template-columns: 1fr;
  }

  .text-image {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-2-services {
    width: 100%;
    margin-top: 30px;
    margin-right: auto;
  }

  .flex-vertical-service-heading {
    max-width: 572px;
  }

  .flex-vertical-service-heading.row-30 {
    max-width: 92%;
  }

  .about-us-services-section-wrap {
    grid-template-columns: 1fr;
  }

  .accordion-item {
    width: 100%;
  }

  .our-mission {
    text-align: center;
    align-items: center;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .our-values {
    object-fit: cover;
    width: 100%;
    height: 400px;
    position: relative;
  }

  .flex-align-center-second {
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .light-color-block.last {
    max-width: 50%;
  }

  .advantages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    justify-items: center;
    display: grid;
  }

  .review-item-wrap-pricing-page {
    width: 370px;
  }

  .review-item-wrap-pricing-page.with-background {
    width: auto;
  }

  .review-item-wrap-last {
    width: 370px;
  }

  .banner-wrap-full {
    grid-column-gap: 40px;
  }

  .lightbox-link {
    height: 350px;
  }

  .video-block {
    width: 350px;
    height: 350px;
  }

  .study-cases-video-btn {
    z-index: 15;
  }

  .play-button-hover {
    z-index: 28;
    width: 120px;
    height: 120px;
  }

  .play-button {
    width: 100px;
    height: 100px;
  }

  .free-consultation-wrap {
    margin-top: 50px;
    position: static;
  }

  .service-list-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .field-form {
    width: 100%;
    min-width: 500px;
  }

  .field-form.full {
    min-width: auto;
  }

  .flex-stages {
    grid-row-gap: 20px;
    flex-direction: column;
    width: 80%;
    margin-left: auto;
    display: flex;
  }

  .section-title-wrapp-working-process {
    max-width: 460px;
    margin-right: 0;
  }

  .process-item.process-item-gap {
    margin-top: 0;
  }

  .process-item.right-margin {
    margin-right: auto;
  }

  .working-process-wrap {
    flex-direction: column;
  }

  .gradient-services {
    filter: blur(210px);
    width: 800px;
    top: 50%;
  }

  .stage {
    justify-content: center;
  }

  .banner-section-price, .banner-section-price.section-black {
    padding-top: 140px;
  }

  .header-wrapper-center {
    max-width: 500px;
  }

  .section-subtitle-top-price {
    z-index: 10;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }

  .pricing-plans-wrapper.annual {
    justify-content: center;
    display: flex;
  }

  .pricing-plans-wrapper.monthly {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .pricing-plan-item {
    align-self: flex-start;
    max-width: 47%;
  }

  .pricing-plan-item:hover {
    transform: translate(0, -15px);
  }

  .pricing-plan-item.last {
    max-width: 50%;
  }

  .pricing-plan-item.purple {
    transform: none;
  }

  .pricing-plan-item.purple:hover {
    transform: translate(0, -20px)translate(0, -15px);
  }

  .blog-banner-wrap {
    flex-direction: column;
    align-items: center;
  }

  .blog-details-header-wrap {
    align-items: center;
    max-width: 80%;
    padding-left: 50px;
  }

  .post-with-sidebar {
    grid-template-columns: .75fr .5fr;
  }

  .blog-sidebar-right {
    width: 100%;
    position: static;
  }

  .blog-sidebar-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 16px;
    flex-flow: wrap-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .blog-sidebar-left-wrapper {
    flex: none;
    width: 100%;
  }

  .blog-sidebar-left {
    flex: none;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .collection-study-cases-list {
    grid-row-gap: 40px;
  }

  .right-section {
    width: 100%;
  }

  .portfolio-grid-collection-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-vertical-form {
    max-width: 572px;
  }

  .flex-vertical-form.flex-vertical-form-margin-top {
    max-width: 100%;
  }

  .left-section {
    width: 100%;
  }

  .project {
    max-width: 100%;
    padding-right: 60px;
  }

  .portfolio-tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-tab-link.all-projects {
    padding-left: 0;
  }

  .portfolio-tab-link.last-child {
    padding-right: 0;
  }

  .banner-title-wrapper {
    width: auto;
  }

  .flex-contact-us-form {
    grid-column-gap: 50px;
    flex-direction: column;
    align-items: center;
  }

  .our-contacts-form-wrapper {
    width: 80%;
    margin-top: 50px;
  }

  .heading-wrap-left {
    max-width: 80%;
  }

  .map-image {
    width: 89%;
  }

  .dark-text-title {
    min-width: 62px;
  }

  .our-team {
    max-width: 400px;
  }

  .about-us-header-image.bottom {
    width: 350px;
    top: 220px;
  }

  .about-us-header-image.top {
    width: 377px;
    top: 60px;
  }

  .images-container {
    width: 500px;
    top: 8%;
    right: -8%;
  }

  .images-container.careers {
    left: 61%;
    right: auto;
  }

  .button-video-wrap {
    z-index: 15;
    bottom: 0;
    right: 13%;
  }

  .workflow-content-wrapper {
    padding-left: 30px;
  }

  .workflow-video {
    height: 400px;
    bottom: 0;
  }

  .workflow-video-wrapper {
    border-radius: 10px;
  }

  .workflow-wrapper {
    overflow: visible;
  }

  .banner-text-video {
    text-align: center;
    max-width: 700px;
    font-size: 67px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials-card-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .review-item-wrap-testimonials-page {
    width: 370px;
  }

  .block-quote {
    background-size: auto 100%;
  }

  .faq-header {
    font-weight: 700;
  }

  .career-text-container {
    max-width: 420px;
  }

  .career-location-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-careers {
    display: none;
  }

  .career-location, .career-type-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-career {
    display: none;
  }

  .job-position-content-wrapper {
    padding-right: 30px;
  }

  .job-position-sidebar-wrapper {
    width: 35%;
    padding: 16px 20px 20px;
    top: 20px;
  }

  .h1-details-page {
    font-size: 58px;
  }

  .blog-post-page-banner-image {
    height: 450px;
  }

  .project-banner-text-wrap {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .project-info {
    grid-template-columns: 1fr;
  }

  .project-button-link-paragraph.right {
    text-align: right;
  }

  .flex {
    grid-template-columns: 1fr;
  }

  .service-details-content-wrapper {
    margin-right: 20px;
  }

  .service-includes {
    grid-template-columns: 1fr;
  }

  .section-title-wrapp-working-process-2 {
    max-width: 460px;
    margin-right: 0;
  }

  .landing-banner-image {
    max-width: 95%;
  }

  .landing-home-pages-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .title-center-landing {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
  }

  .landing-performance-item-title {
    max-width: 220px;
    font-size: 18px;
  }

  .landing-features-grid, .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .landing-download-block-wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
  }

  .landing-download-block-wrap {
    max-width: 339px;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .nav-dropdown-link-wrap {
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .collection-item {
    width: 100%;
  }

  .nav-dropdown-collection-link-item {
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 18px;
  }

  .error-page-heading {
    font-size: 140px;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
  }

  .section-subtitle-block {
    align-self: flex-start;
  }

  .section-subtitle-block.banner {
    align-self: center;
  }

  .section-subtitle-block.left-mobile-center {
    align-self: flex-start;
  }

  .section-subtitle-block.tablet-center {
    align-self: center;
  }

  .section-subtitle-block.left {
    align-self: flex-start;
  }

  .section-subtitle-block.mobile-center {
    align-self: center;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  blockquote {
    font-size: 25px;
  }

  .pages-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .base-container.without-padding {
    padding-right: 0;
  }

  .button-primary.margin-top {
    margin-top: 20px;
  }

  .button-primary.margin-top-button-large {
    margin-top: 40px;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .nav-link-header {
    margin-left: 0;
  }

  .nav-dropdown-list.megamenu {
    padding-left: 20px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.small-padding-bottom {
    padding-bottom: 20px;
  }

  .section.call-to-action-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.testimonials-section {
    padding-bottom: 0;
  }

  .section.banner-second-home {
    padding-top: 120px;
  }

  .section.additional-top-spacing {
    padding-top: 60px;
  }

  .section.primary-bg-copy, .section.testimonials {
    padding-bottom: 0;
  }

  .section.about-us-banner-section {
    padding-top: 120px;
    padding-bottom: 180px;
  }

  .section.banner-about-us-second {
    padding-top: 120px;
  }

  .section.secondary-light-bg-about-us {
    padding-top: 60px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.portfolio-grid-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.price {
    overflow: hidden;
  }

  .section.contacts-banner {
    padding-top: 120px;
  }

  .section.our-team-banner {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .section.banner-faq, .section.job-position-banner, .section.project-banner {
    padding-top: 120px;
  }

  .section.landing-banner {
    background-position: 50% 0;
    background-size: auto;
    padding-top: 100px;
  }

  .section.banner-dark, .section.changelog-banner {
    padding-top: 120px;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-header {
    width: 100%;
    margin-top: 30px;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-system-column.first, .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .colors-container {
    margin-top: 30px;
  }

  .headings-container {
    grid-row-gap: 30px;
  }

  .link-with-icon.small-text-spacing {
    margin-top: 10px;
  }

  .small-bottom-spacing {
    margin-bottom: 10px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .style-guide-body-wrapper {
    width: 100%;
  }

  .style-guide-wrapper {
    grid-row-gap: 40px;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 30px;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 10px;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .style-guide-button-wrapper {
    grid-row-gap: 10px;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .footer-brand {
    padding-left: 0;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .footer-logo-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-brand-description {
    text-align: center;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-social-icons-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .banner-text-wrapper.max-width {
    max-width: 90%;
    margin-bottom: 40px;
  }

  .home-banner-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .big-number {
    text-align: center;
  }

  .big-number.left {
    width: auto;
  }

  .button-primary-call-to-action.margin-top-35 {
    align-self: center;
    margin-top: 30px;
  }

  .button-primary-call-to-action.margin-top {
    margin-top: 30px;
  }

  .button-primary-call-to-action.space-mobile-center {
    align-self: center;
    margin-top: 30px;
    margin-left: auto;
  }

  .section-subtitle.banner {
    align-self: center;
  }

  .section-subtitle.max-width {
    text-align: center;
  }

  .section-subtitle.mobile-center, .section-subtitle.testimonials-subtitle {
    align-self: center;
  }

  .image-wrap {
    display: block;
  }

  .image-wrap.margin-top-40 {
    margin-top: 40px;
  }

  .button-wrap {
    justify-content: center;
  }

  .button-wrap.margin-top-40 {
    justify-content: center;
    margin-top: 30px;
    margin-right: auto;
  }

  .statistics-wrap-item {
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 20px;
  }

  .statistics-wrap-item.first {
    border-bottom-style: none;
  }

  .statistics-wrap-item.without-padding {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-2-columns {
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    justify-items: center;
    display: flex;
  }

  .statistic-wrap {
    display: flex;
  }

  .statistic-wrap.flex-horizontal {
    grid-column-gap: 0px;
    flex-direction: row;
  }

  .flex-vertical {
    max-width: 420px;
  }

  .flex-vertical.row-15 {
    align-items: center;
    max-width: 100%;
  }

  .flex-vertical.services-text {
    max-width: none;
  }

  .services-item {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .big-text.margin-top-section-space {
    margin-top: 80px;
  }

  .big-text.dark-center {
    max-width: 396px;
  }

  .title-center {
    max-width: 450px;
    margin-bottom: 40px;
  }

  .dark-background-with-logo.big-text {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .services-collection {
    margin-top: 30px;
  }

  .services-collection.home-2 {
    max-width: none;
  }

  .services-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .services-list.left-column {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .services-list.right-column {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .other-services-collection-list {
    grid-template-columns: 1fr;
  }

  .section-title-wrapp {
    align-items: center;
    max-width: 190px;
    margin-bottom: 40px;
  }

  .section-title-wrapp.full {
    margin-bottom: 0;
  }

  .services-list-item-wrap {
    flex-direction: column;
    align-items: center;
  }

  .service-icon {
    justify-content: center;
    display: flex;
  }

  .service-icon.margin-top {
    z-index: 5;
    background-color: #f6edff;
    position: relative;
  }

  .service-link {
    font-size: 38px;
    display: block;
  }

  .h5-link {
    font-size: 22px;
  }

  .color.middle-dark {
    height: 77px;
  }

  .color.light-100 {
    height: auto;
  }

  .colors-block-with-button {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-top: 40px;
    display: grid;
    position: static;
    top: -60px;
  }

  .banner-text {
    font-size: 60px;
  }

  .title-flex.space-between {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .header-banner-wrap.max-width {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .h2 {
    font-size: 40px;
  }

  .h2.services {
    max-width: none;
  }

  .blog-wrap {
    margin-top: 50px;
  }

  .case-title-link {
    font-size: 22px;
  }

  .testimonials-header-wrap {
    align-items: center;
    padding-bottom: 30px;
  }

  .testimonials-header-description {
    text-align: center;
  }

  .testimonials-section-wrap {
    padding-bottom: 0;
  }

  .reviews-wrapper-column.second {
    width: 2400px;
    margin-left: 30px;
  }

  .reviews-general-wrapper {
    padding-bottom: 60px;
    overflow: auto;
  }

  .images-gallery {
    height: 214px;
    margin-top: 50px;
  }

  .images-gallery.margin-top-large {
    height: 227px;
    margin-top: 40px;
    transform: translate(-163px);
  }

  .call-to-action-image-second {
    height: 220px;
  }

  .text-wrap-center-block-call-to-action {
    margin-bottom: 30px;
  }

  .call-to-action-banner-heading {
    font-size: 60px;
  }

  .logo-background.right {
    top: 24%;
    right: -69%;
  }

  .logo-background.left {
    top: 24%;
    left: -46%;
  }

  .home-second-banner-images-line {
    transform: translate(-177px);
  }

  .box-gallery-image-home {
    height: 220px;
  }

  .logo-wrapper-home-second {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    display: grid;
  }

  .image-wrap-with-button {
    height: 320px;
  }

  .banner-home-second-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .vertical-line {
    margin-left: 15px;
    margin-right: 15px;
  }

  .flex-horizontal {
    flex-direction: column;
  }

  .home-second-services {
    margin-top: 40px;
  }

  .big-text-dark {
    font-size: 42px;
  }

  .figure-background {
    width: 60px;
    bottom: 43%;
  }

  .figure-background.circle {
    top: 23%;
    right: -6%;
  }

  .figure-background.figure {
    bottom: -8%;
  }

  .home-2-services-list {
    grid-row-gap: 50px;
  }

  .reviews-container-wrap {
    overflow: auto;
  }

  .reviews-wrapper-row {
    padding-bottom: 60px;
  }

  .reviews-wrapper-row.padding-right {
    width: 2430px;
    padding-left: 30px;
  }

  .slider-our-work {
    margin-top: 50px;
  }

  .our-work-wrap {
    flex-direction: column;
  }

  .base-container-right.without-padding {
    padding-right: 0;
  }

  .section-wrap-title.our-work {
    margin-right: auto;
  }

  .slider-our-work-slide {
    width: 100%;
  }

  .color-background.light-200 {
    height: auto;
  }

  .home-2-cta-wrap {
    max-width: 480px;
  }

  .home-2-call-to-action-heading {
    font-size: 60px;
  }

  .company-logo-wrap {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin-top: 50px;
  }

  .banner-section-home-3 {
    padding-top: 120px;
  }

  .banner-section-home-3.section-black {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .home-3-banner-header-description {
    font-size: 18px;
  }

  .company-logo-wrapper {
    margin-top: 40px;
  }

  .banner-header-3-grid {
    width: 100%;
  }

  .big-text-medium {
    font-size: 30px;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .content-wrapper-flex {
    grid-row-gap: 20px;
  }

  .collection-list-wrapper {
    grid-row-gap: 40px;
  }

  .home-3-service-heading {
    font-size: 40px;
  }

  .service-icon-home-3 {
    justify-content: center;
    display: flex;
  }

  .services-dash-line {
    top: 66px;
  }

  .dark-bg-with-logo-not-fixed.big-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .subtitle-wrapp {
    align-self: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }

  .home-3-banner-wrapper {
    z-index: 20;
    position: relative;
  }

  .banner-section {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .banner-section.career {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .home-4-image-absolute {
    object-fit: cover;
    width: 100%;
    height: 350px;
    position: relative;
  }

  .logos-block-wrap {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .fixed-width-block {
    max-width: 100%;
    margin-right: 0;
  }

  .logos-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 25px;
  }

  .text-wrap-max-width.with {
    width: 200px;
    margin-right: 10px;
  }

  .service-icon-white {
    justify-content: center;
    display: flex;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .big-text-home-4 {
    font-size: 30px;
  }

  .logo-background-about-us.right {
    position: absolute;
    top: 24%;
    right: -69%;
  }

  .logo-backgroundg-our-culture.left {
    top: 24%;
    left: -46%;
  }

  .big-text-about {
    font-size: 30px;
  }

  .logo-background-our-culture.right {
    top: 24%;
    right: -69%;
  }

  .subtitle-wrap.subtitle-wrap-margin-top {
    margin-top: 0;
  }

  .features-flex-wrap {
    grid-row-gap: 54px;
  }

  .feature-flex-box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-flex-box.reverse {
    flex-wrap: wrap-reverse;
  }

  .feature-text-wrap {
    max-width: 100%;
  }

  .feature-image-wrap {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 84%;
    height: 370px;
  }

  .section-wrapper {
    width: auto;
    height: 300px;
  }

  .about-company {
    width: 100%;
  }

  .team-collection.margin-top-team-collection {
    margin-top: 40px;
  }

  .worker-photo {
    height: 320px;
  }

  .mobile-center {
    text-align: center;
  }

  .our-advantages {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }

  .advantage-item {
    text-align: left;
  }

  .advantage-wrap {
    flex-direction: row;
    padding: 0;
  }

  .advantage-wrap.last {
    justify-content: center;
    max-width: 50%;
  }

  .about-2-counter-item.first {
    grid-template-columns: 1fr;
  }

  .flex-vertical-service-heading {
    max-width: 420px;
  }

  .accordion-toggle {
    grid-column-gap: 30px;
  }

  .accordion-item {
    width: 100%;
  }

  .our-mission {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .our-values {
    object-fit: cover;
    width: 100%;
    height: 350px;
    position: relative;
  }

  .our-advantages-wrapper {
    flex-wrap: wrap;
  }

  .image-wrap-with-background {
    width: 530px;
  }

  .flex-align-center-second.flex-align-center-second-gap {
    margin-top: 60px;
  }

  .light-color-block.last {
    padding: 20px;
  }

  .advantages-wrapper {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .title-text-wrap.title-text-wrap-max-width {
    align-items: center;
  }

  .testimonials-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 40px;
  }

  .title-wrap.flex {
    flex-direction: column;
    align-items: center;
  }

  .banner-wrap-full {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 50px;
  }

  .play-button-hover {
    width: 80px;
    height: 80px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .free-consultation-wrap {
    margin-top: 40px;
  }

  .service-list-wrapper {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .field-form {
    min-width: 360px;
  }

  .flex-stages {
    grid-row-gap: 0px;
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .section-title-wrapp-working-process {
    margin-bottom: 40px;
  }

  .process-item.process-item-gap {
    margin-left: auto;
  }

  .banner-section-price {
    padding-top: 120px;
  }

  .banner-section-price.section-black {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .title-wrapper-center.title-wrapper-center-margin-bottom {
    width: 90%;
    margin-bottom: 30px;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 40px;
  }

  .pricing-plans-wrapper.monthly {
    grid-template-columns: 1fr;
  }

  .pricing-plan-item {
    max-width: 370px;
    min-height: auto;
  }

  .pricing-plan-item.last {
    max-width: 370px;
  }

  .pricing-plan-item.purple {
    transform: none;
  }

  .pricing-plan-item.purple:hover {
    transform: translate(0, -15px);
  }

  .blog-banner-wrap {
    flex-direction: column;
  }

  .sidebar-search-wrapper {
    margin-top: 20px;
  }

  .blog-details-header-wrap {
    max-width: 100%;
  }

  .post-with-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
    display: grid;
  }

  .blog-sidebar-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-left-wrapper {
    column-count: 1;
  }

  .blog-sidebar-left {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .collection-study-cases-list {
    grid-row-gap: 40px;
  }

  .portfolio-grid-collection-list {
    grid-template-columns: 1fr;
  }

  .collection-study-cases-item.first {
    margin-bottom: 40px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .flex-vertical-form {
    max-width: 420px;
  }

  .flex-vertical-form.flex-vertical-form-margin-top {
    max-width: 100%;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .project {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-menu {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .collection-study-cases.gap {
    margin-top: 40px;
  }

  .our-contacts-form-wrapper {
    width: 100%;
    padding: 20px;
  }

  .heading-wrap-left {
    max-width: 100%;
  }

  .location-three {
    right: 44%;
  }

  .location-two {
    right: 30%;
  }

  .map-image {
    background-position: 90% 55%;
    width: 90%;
  }

  .location-one {
    right: 24%;
  }

  .address {
    grid-row-gap: 10px;
    padding-bottom: 10px;
  }

  .office-info {
    grid-row-gap: 10px;
  }

  .locations-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .dark-text-title {
    min-width: 70px;
  }

  .country {
    padding-bottom: 10px;
  }

  .location-wrap {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .location-wrap.last {
    grid-template-columns: 1fr;
  }

  .our-team {
    max-width: none;
  }

  .about-us-header-image.bottom {
    width: 320px;
    top: -110px;
    right: 19.778px;
  }

  .about-us-header-image.top {
    width: 320px;
    position: static;
  }

  .images-container {
    width: 100%;
    height: 300px;
    position: relative;
    left: 1%;
    right: auto;
  }

  .images-container.careers {
    top: auto;
    bottom: auto;
    left: auto;
  }

  .button-video-wrap {
    top: 163px;
    right: 8%;
  }

  .workflow-content-wrapper {
    text-align: center;
    width: 100%;
    padding-top: 60px;
    padding-left: 0;
  }

  .workflow-video {
    height: 350px;
  }

  .workflow-video-wrapper {
    width: 100%;
  }

  .workflow-wrapper {
    flex-wrap: wrap;
  }

  .banner-text-video {
    max-width: 500px;
    font-size: 48px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials-card-wrapper {
    column-count: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .block-quote-wrapper {
    margin-bottom: 60px;
  }

  .block-quote-name {
    font-size: 16px;
  }

  .career-text-container {
    z-index: 5;
    align-items: center;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .collection-list-career-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: flex;
  }

  .career-list-item-wrapper {
    flex-wrap: wrap;
  }

  .career-list-item-wrapper.last {
    grid-row-gap: 0px;
    width: 45%;
    padding: 20px;
  }

  .career-position-wrapper, .career-location-wrapper, .career-type-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .job-position-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-sidebar-wrapper {
    width: 100%;
    padding: 24px 40px 30px;
    position: relative;
    top: 0;
  }

  .h1-details-page {
    font-size: 42px;
  }

  .blog-post-page-banner-image, .project-page-image {
    height: 350px;
  }

  .project-banner-text-wrap {
    grid-template-columns: 1fr;
  }

  .client-info {
    width: 100%;
  }

  .project-pagination-icon-wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .project-pagination-wrapper {
    margin-bottom: 60px;
  }

  .project-result-grid-block {
    grid-template-columns: 1fr;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-includes {
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .rich-text-style-services {
    flex-direction: column;
  }

  .rich-text-style-services img {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .rich-text-style-services ul {
    grid-row-gap: 10px;
  }

  .section-title-wrapp-working-process-2 {
    margin-bottom: 40px;
  }

  .landing-inner-page-image {
    width: 100%;
  }

  .landing-home-pages-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .title-center-landing {
    max-width: 450px;
    margin-bottom: 40px;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .landing-features-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .landing-download-block-wrapper {
    justify-content: center;
  }

  .landing-download-block-wrap {
    margin-bottom: 30px;
  }

  .landing-call-to-action {
    text-align: center;
    margin-bottom: 15px;
  }

  ._404-paragraph {
    margin-bottom: 40px;
  }

  .error-page-heading {
    font-size: 120px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-subtitle-block.banner {
    align-self: center;
  }

  .section-subtitle-block.max-width {
    text-align: center;
  }

  .section-subtitle-block.mobile-center, .section-subtitle-block.testimonials-subtitle {
    align-self: center;
  }

  .hire-popup {
    max-width: 300px;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }
}

@media screen and (max-width: 479px) {
  .base-container.without-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .button-primary.margin-gap {
    margin-left: 60px;
  }

  .button-text {
    text-align: center;
  }

  .nav-menu {
    width: 90%;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .nav-link-header {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .section.testimonials-section, .section.testimonials {
    padding-bottom: 0;
  }

  .section.dark-background-map {
    min-height: 390px;
  }

  .section.our-team-banner {
    padding-bottom: 150px;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .grid-description.first-description {
    border-bottom: 1px rgba(255, 255, 255, .2);
    border-left-style: none;
    border-right-style: solid;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .bottom-style-spacing-desktop, .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .link-with-icon.small-top-spacing {
    margin-top: 0;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .button-primary-with-arrow.call-to-action {
    grid-column-gap: 80px;
  }

  .button-secondary-white {
    justify-content: center;
    display: flex;
  }

  .style-guide-buttons-wrapper {
    grid-template-columns: 1fr;
  }

  .button-primary-white {
    justify-content: center;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
  }

  .footer-link-wrapper {
    align-items: center;
    width: 50%;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-links-wrapper {
    grid-row-gap: 25px;
    flex-flow: wrap;
    justify-content: center;
  }

  .footer-rights {
    text-align: center;
    line-height: 1.6em;
  }

  .footer-logo-wrapper {
    width: 90%;
  }

  .footer-link {
    padding: 8px 10px;
  }

  .footer {
    text-align: left;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-right-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .banner-buttons-wrap {
    grid-row-gap: 12px;
  }

  .banner-buttons-wrap.home-2 {
    margin-top: 40px;
  }

  .big-number {
    text-align: center;
  }

  .big-number.left {
    text-align: left;
  }

  .button-primary-call-to-action.margin-top {
    align-self: center;
  }

  .button-primary-call-to-action.margin-top-gap, .button-primary-call-to-action.margin-top-call-to-action-button {
    align-self: auto;
  }

  .section-subtitle.max-width {
    text-align: center;
  }

  .section-subtitle.left-mobile-center, .section-subtitle.mobile-center {
    align-self: center;
  }

  .who-we-are {
    height: 300px;
  }

  .button-wrap.margin-top-40 {
    justify-content: center;
  }

  .statistics-wrap-item {
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 10px;
  }

  .statistics-wrap-item.first {
    border-right-width: 0;
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .statistics-wrap-item.without-padding {
    padding-left: 30px;
    padding-right: 30px;
  }

  .statistic-wrap, .statistic-wrap.flex-horizontal {
    flex-direction: column;
  }

  .flex-vertical {
    max-width: 100%;
    min-height: 230px;
  }

  .flex-vertical.row-15, .flex-vertical.services-text {
    align-items: center;
  }

  .big-text {
    font-size: 30px;
  }

  .services-list, .services-list.left-column, .services-list.right-column, .other-services-collection-list {
    grid-template-columns: 1fr;
  }

  .services-list-item-wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .service-icon.margin-top {
    margin-top: 5px;
  }

  .h5-link, .service-description {
    text-align: center;
  }

  .colors-block-with-button {
    grid-template-columns: 1fr;
  }

  .title-flex.space-between {
    flex-direction: column;
    align-items: center;
  }

  .header-banner-wrap {
    align-items: center;
  }

  .h2 {
    max-width: 100%;
  }

  .h2.services {
    max-width: 100%;
  }

  .categories {
    flex-wrap: wrap;
  }

  .review-item-wrap, .review-item-wrap.fix-width {
    width: 310px;
  }

  .testimonials-header-wrap {
    align-items: center;
  }

  .testimonials-header-description {
    text-align: center;
  }

  .reviews-wrapper-column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-left: 15px;
    display: none;
  }

  .reviews-wrapper-column.second {
    grid-column-gap: 20px;
    flex-direction: row;
    width: 1980px;
    margin-left: 20px;
    display: flex;
  }

  .images-gallery {
    height: 230px;
    padding-top: 28px;
    transform: translate(-135px);
  }

  .images-gallery.margin-top-large {
    height: 260px;
    transform: translate(-149px);
  }

  .call-to-action-image-second {
    object-fit: cover;
    width: 320px;
    height: 230px;
  }

  .home-fourth-images-wrap {
    height: 300px;
  }

  .call-to-action-banner-heading {
    font-size: 60px;
  }

  .home-second-banner-text-wrap {
    flex-direction: column;
    display: flex;
  }

  .home-second-banner-images-line {
    padding-bottom: 0;
    transform: translate(-191px);
  }

  .box-gallery-image-home {
    width: 360px;
    height: 250px;
  }

  .box-gallery-image-home.rotate-left-10-degrees, .box-gallery-image-home.rotate-left-6-degrees {
    object-fit: cover;
    transform: rotate(-5deg);
  }

  .box-gallery-image-home.rotate-right {
    object-fit: cover;
    height: 250px;
  }

  .logo-wrapper-home-second {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .banner-home-second-grid {
    grid-row-gap: 30px;
  }

  .services-gradient {
    filter: blur(140px);
    background-image: radial-gradient(circle, rgba(128, 0, 255, .23), #fff);
    height: 1200px;
    top: auto;
    bottom: 11%;
    left: -62px;
    right: -30%;
  }

  .text-max-with {
    width: auto;
  }

  .flex-horizontal.study-cases {
    flex-direction: column;
  }

  .big-text-dark {
    font-size: 28px;
  }

  .figure-background {
    width: 42px;
    bottom: 45%;
  }

  .figure-background.circle {
    top: 28%;
  }

  .figure-background.globe-service {
    top: 2px;
  }

  .home-2-service-title {
    font-size: 46px;
  }

  .reviews-wrapper-row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 2095px;
    margin-left: 20px;
  }

  .reviews-wrapper-row.padding-right {
    width: 2010px;
    padding-left: 0;
  }

  .base-container-right.large-right {
    padding-right: 15px;
  }

  .base-container-right.without-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .section-wrap-title.our-work {
    align-items: center;
    width: auto;
  }

  .button-primary-w {
    justify-content: center;
  }

  .scroll-down-arrow {
    height: 40px;
  }

  .company-logo-wrap {
    flex-direction: column;
  }

  .banner-section-home-3.section-black {
    overflow: hidden;
  }

  .scroll-down-block, .home-3-banner-header-description {
    margin-top: 15px;
  }

  .company-logo-wrapper {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .banner-header-3-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .home-3-service-item {
    grid-column-gap: 20px;
  }

  .content-wrapper-flex {
    align-items: flex-start;
  }

  .collection-list-wrapper {
    grid-row-gap: 40px;
  }

  .home-3-service-heading {
    font-size: 25px;
  }

  .services-dash-line {
    height: 200px;
    top: 71px;
    left: 16px;
  }

  .dark-bg-with-logo-not-fixed.big-text {
    background-size: auto;
  }

  .logos-block-wrap {
    display: flex;
  }

  .fixed-width-block {
    max-width: 79%;
  }

  .logos-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .home-4-services-list {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .text-wrap-max-width, .text-wrap-max-width.with {
    width: auto;
  }

  .home-4-services-wrap {
    grid-template-columns: 1fr;
  }

  .gradient-background, .feature-image-wrap {
    height: 300px;
  }

  .section-wrapper {
    height: 250px;
  }

  .about-company {
    object-fit: cover;
    width: 100%;
    margin-right: 0;
  }

  .text-block-wrap.text-block-wrap-padding {
    padding-right: 0;
  }

  .team-collection {
    grid-template-columns: 1fr;
  }

  .team-collection-item {
    width: 100%;
  }

  .text-wrap-flex.space-between {
    flex-direction: column;
  }

  .worker-photo {
    height: 360px;
  }

  .mobile-center, .advantage-item {
    text-align: center;
  }

  .advantage-wrap {
    flex-direction: column;
  }

  .about-2-counter-grid {
    grid-template-columns: 1fr;
  }

  .about-2-counter-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .max-width-block {
    min-width: 100%;
  }

  .flex-vertical-service-heading {
    max-width: 242px;
    min-height: 230px;
  }

  .faq-button-wrap {
    min-width: 36px;
  }

  .accordion-item {
    width: 100%;
  }

  .accordion-item.service {
    min-width: auto;
  }

  .our-advantages-heading-wrap {
    width: auto;
  }

  .our-advantages-wrap-content {
    max-width: 320px;
  }

  .img-company {
    height: 300px;
  }

  .image-wrap-with-background {
    width: 300px;
    height: 300px;
    padding-right: 10px;
  }

  .flex-align-center-second.flex-align-center-second-gap {
    margin-top: 40px;
  }

  .light-color-block.last {
    max-width: 100%;
  }

  .review-item-wrap-pricing-page {
    width: 100%;
    padding: 20px;
  }

  .title-wrap.flex {
    align-items: center;
  }

  .review-item-wrap-last {
    width: 100%;
  }

  .banner-wrap-full {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .lightbox-link {
    height: 320px;
  }

  .video-block {
    width: 320px;
    height: 320px;
  }

  .study-cases-video-btn {
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: none;
  }

  .free-consultation-wrap {
    padding: 20px 15px;
  }

  .service-list-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .field-form {
    width: 100%;
    min-width: auto;
  }

  .flex-stages {
    grid-row-gap: 30px;
  }

  .process-item {
    min-width: 10%;
  }

  .process-item-wrap, .stage {
    justify-content: center;
  }

  .banner-section-price.section-black {
    overflow: hidden;
  }

  .pricing-plan-list {
    grid-row-gap: 8px;
  }

  .pricing-plan-item {
    padding: 20px;
  }

  .blog-banner-wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .sidebar-search-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .blog-details-header-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-sidebar-right {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-post-category {
    margin-bottom: 20px;
  }

  .date {
    font-size: 16px;
  }

  .blog-sidebar-left {
    grid-template-columns: 1fr;
  }

  .start-project-form.start-project-form-margin-top {
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .right-section {
    order: -1;
  }

  .flex-vertical-form {
    max-width: 242px;
    min-height: 230px;
  }

  .project {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-tab-link {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-tab-link.last-child {
    padding-left: 0;
  }

  .fields-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .our-contacts-form-wrapper {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .location-three {
    top: 320px;
    right: 65%;
  }

  .location-two {
    top: 257px;
  }

  .map-image {
    background-position: 88% 41%;
    width: 72%;
  }

  .location-one {
    right: 20%;
  }

  .locations-wrap {
    grid-template-columns: 1fr;
  }

  .dark-text-title, .dark-text {
    min-width: 60px;
  }

  .country {
    justify-content: space-between;
    align-items: center;
  }

  .location-wrap {
    width: 100%;
  }

  .our-team {
    max-width: 250px;
  }

  .about-us-header-image.bottom {
    top: -42px;
  }

  .images-container {
    height: 300px;
  }

  .images-container.careers {
    height: 450px;
  }

  .button-video-wrap {
    top: 31%;
    right: 50%;
    transform: translate(-50%);
  }

  .workflow-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .banner-text-video {
    font-size: 32px;
  }

  .review-item-wrap-testimonials-page {
    width: 100%;
    padding: 20px;
  }

  .block-quote {
    background-size: auto 100%;
  }

  .block-quote.max-width-large {
    background-image: url('../images/Line.svg');
  }

  .career-text-container {
    margin-bottom: 50px;
  }

  .career-list-item-wrapper.last {
    width: 100%;
  }

  .job-position-sidebar-wrap.last-child {
    margin-bottom: 15px;
  }

  .job-details-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .job-position-sidebar-wrapper {
    padding: 14px 20px 20px;
  }

  .client-info {
    width: 100%;
  }

  .project-button-link {
    justify-content: flex-end;
    width: 100%;
  }

  .project-button-link.left {
    justify-content: flex-start;
  }

  .project-pagination-icon-wrapper {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: rgba(175, 175, 175, .5);
    border-bottom-width: 1px;
    border-bottom-color: rgba(175, 175, 175, .5);
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .project-pagination-wrapper {
    flex-wrap: wrap;
  }

  .project-button-link-paragraph {
    text-align: right;
  }

  .project-button-link-paragraph.left {
    text-align: left;
  }

  .progect-gallery {
    flex-direction: column;
  }

  .landing-home-pages-wrapper, .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .landing-call-to-action-description {
    text-align: center;
  }

  .globe {
    padding-left: 50px;
    padding-right: 50px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .license-link {
    margin-right: 15px;
  }

  .section-subtitle-block.max-width {
    text-align: center;
  }

  .section-subtitle-block.left-mobile-center, .section-subtitle-block.mobile-center {
    align-self: center;
  }

  .hire-popup {
    bottom: 90px;
    left: auto;
    right: 12px;
  }
}

#w-node-_594341f0-9724-829f-64ec-e4d922dbfd93-5fa56fed, #w-node-_594341f0-9724-829f-64ec-e4d922dbfd9b-5fa56fed, #w-node-_594341f0-9724-829f-64ec-e4d922dbfda3-5fa56fed, #w-node-_594341f0-9724-829f-64ec-e4d922dbfdab-5fa56fed, #w-node-c06544b8-820b-4385-e923-3dbb9d19e7f5-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e7f7-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e7f9-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e7fb-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e7fd-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e800-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e802-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e804-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e806-5fa56fee, #w-node-c06544b8-820b-4385-e923-3dbb9d19e808-5fa56fee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9c5-5fa56ff0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
  justify-self: start;
}

#w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9cb-5fa56ff0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a06b705e-64ff-c65e-6461-a7010257572c-5fa56ff1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a5df7005-1d87-8e78-773d-af11e6ecafbf-5fa56ff2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-a5df7005-1d87-8e78-773d-af11e6ecafc1-5fa56ff2, #w-node-a5df7005-1d87-8e78-773d-af11e6ecafc6-5fa56ff2, #w-node-a5df7005-1d87-8e78-773d-af11e6ecafcb-5fa56ff2, #w-node-a5df7005-1d87-8e78-773d-af11e6ecafcd-5fa56ff2, #w-node-a5df7005-1d87-8e78-773d-af11e6ecafcf-5fa56ff2, #w-node-_268d4d19-087a-ba69-65c4-5dbad69896c8-5fa56ff2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_66f1acfe-a76e-e49f-e70a-9928b7d9cc06-5fa56ff3 {
  align-self: center;
}

#w-node-_66f1acfe-a76e-e49f-e70a-9928b7d9cc0d-5fa56ff3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55192d0d-c51f-9616-9439-1a6235cddbc8-5fa56ff4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_55192d0d-c51f-9616-9439-1a6235cddbd0-5fa56ff4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04a99-5fa56ff5 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04a9e-5fa56ff5, #w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04aa5-5fa56ff5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04aa6-5fa56ff5 {
  align-self: start;
  justify-self: start;
}

#w-node-_1c458b22-04a5-254c-74f3-ae87f5ebdfc2-5fa56ff5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0b300f05-b776-9d62-55b8-b595f966bbc4-5fa56ff6 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
}

#w-node-_5cd646cf-868b-51f7-85fd-f1733e590ff5-5fa56ff6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-c1493c2c-5d2c-887e-a5d1-9274e926fa9b-5fa56ff7, #w-node-c1493c2c-5d2c-887e-a5d1-9274e926faaa-5fa56ff7, #w-node-c1493c2c-5d2c-887e-a5d1-9274e926fab9-5fa56ff7, #w-node-c1493c2c-5d2c-887e-a5d1-9274e926fac8-5fa56ff7, #w-node-c1493c2c-5d2c-887e-a5d1-9274e926fad7-5fa56ff7, #w-node-_335e6a0e-d470-7688-9bb1-250440cd16ac-5fa56ff8, #w-node-_335e6a0e-d470-7688-9bb1-250440cd16b4-5fa56ff8, #w-node-_4914bbad-5991-7780-92ef-99672266e2b5-5fa56ff8, #w-node-_4914bbad-5991-7780-92ef-99672266e2ba-5fa56ff8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4914bbad-5991-7780-92ef-99672266e2bf-5fa56ff8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_386afe35-0a9c-69ab-3baa-85bbc0fcf7ef-5fa56ffa {
  align-self: center;
}

#w-node-_386afe35-0a9c-69ab-3baa-85bbc0fcf7f6-5fa56ffa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4af8ca0d-704c-3c03-7211-baeef6402c6e-5fa56ffa {
  align-self: start;
}

#w-node-_9a16f695-4914-a92c-91a5-9de5c37b5fad-5fa56ffb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d388-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3a2-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3bf-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3db-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3f7-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d416-5fa56ffb {
  align-self: start;
}

#w-node-f1ab8cb0-b4ee-cf73-cdc1-5266793919ed-5fa56fff {
  align-self: center;
}

#w-node-f1ab8cb0-b4ee-cf73-cdc1-5266793919f4-5fa56fff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c04342e4-3b3f-e7e7-0813-3be1a142e94d-5fa57000, #w-node-c04342e4-3b3f-e7e7-0813-3be1a142e96e-5fa57000, #w-node-c04342e4-3b3f-e7e7-0813-3be1a142e993-5fa57000 {
  align-self: center;
}

#w-node-c414ddfc-810d-7e45-39a0-66fce73f5901-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f5910-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f591f-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f592e-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f593d-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f594c-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f595b-5fa57001, #w-node-c414ddfc-810d-7e45-39a0-66fce73f596a-5fa57001 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_38cfdeb8-4116-b6eb-16f6-ddfc0eb06e96-5fa57002 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f9ad4ad8-25a8-df22-1a75-0d1f26f8bd7f-5fa57003 {
  justify-self: start;
}

#w-node-f2611317-6976-4e05-cb99-edf59be8be6c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be72-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be78-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be7a-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be7c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9a-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9e-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea0-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea2-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea4-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea6-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea8-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beaa-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beac-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beae-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beb6-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beb8-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beba-5fa57008 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_335e6a0e-d470-7688-9bb1-250440cd16ad-5fa56ff8 {
    align-self: start;
  }

  #w-node-_2b398cb0-9ac5-91dc-6864-2fab90839cfc-5fa57001 {
    justify-self: start;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9c5-5fa56ff0 {
    align-self: end;
    justify-self: start;
  }

  #w-node-_0b300f05-b776-9d62-55b8-b595f966bbc4-5fa56ff6 {
    grid-column: span 1 / span 1;
    align-self: start;
  }

  #w-node-_0b300f05-b776-9d62-55b8-b595f966bbcc-5fa56ff6 {
    align-self: stretch;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9cd-5fa56ff0, #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9cf-5fa56ff0, #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9d4-5fa56ff0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92155127-745b-18bf-c42c-62561867d2f6-5fa56ff0 {
    align-self: start;
  }

  #w-node-_55192d0d-c51f-9616-9439-1a6235cddbc8-5fa56ff4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_55192d0d-c51f-9616-9439-1a6235cddbd6-5fa56ff4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_55192d0d-c51f-9616-9439-1a6235cddbd8-5fa56ff4, #w-node-_55192d0d-c51f-9616-9439-1a6235cddbde-5fa56ff4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54e36878-e832-675e-1673-8cb731a4ac1d-5fa56ff5 {
    align-self: start;
  }

  #w-node-_0b300f05-b776-9d62-55b8-b595f966bbc4-5fa56ff6 {
    grid-column: span 1 / span 1;
  }

  #w-node-f541be46-ad7b-bcfe-1e0b-9f706183d51f-5fa56ff7 {
    align-self: start;
  }

  #w-node-_4914bbad-5991-7780-92ef-99672266e2bf-5fa56ff8 {
    grid-column: span 1 / span 1;
  }

  #w-node-_42683a8d-d339-98ef-31ca-a51785d00257-5fa56ff9, #w-node-fbabdf5a-57b8-2e5e-201e-6163592aa8af-5fa56ff9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d388-5fa56ffb {
    align-self: start;
  }

  #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3bf-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d416-5fa56ffb, #w-node-eebe5f43-5781-db3d-2ae3-23eed4e6e87c-5fa56ffb, #w-node-_03f00c7d-38c0-eec1-013f-6c22dcebbb26-5fa57004 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9bd-5fa56ff0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_034eeeb5-22b8-b8e2-a1be-8c400715a9cb-5fa56ff0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_55192d0d-c51f-9616-9439-1a6235cddbc8-5fa56ff4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_55192d0d-c51f-9616-9439-1a6235cddbd6-5fa56ff4, #w-node-_0b300f05-b776-9d62-55b8-b595f966bbc4-5fa56ff6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_96ace934-3c80-5393-ecd7-693da90ce618-5fa56ff8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4914bbad-5991-7780-92ef-99672266e2af-5fa56ff8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4914bbad-5991-7780-92ef-99672266e2bf-5fa56ff8, #w-node-fbabdf5a-57b8-2e5e-201e-6163592aa8af-5fa56ff9, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d3bf-5fa56ffb, #w-node-af7d7af9-7904-f942-65a4-4b0ab9f6d416-5fa56ffb, #w-node-eebe5f43-5781-db3d-2ae3-23eed4e6e87c-5fa56ffb {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a06b705e-64ff-c65e-6461-a7010257572c-5fa56ff1, #w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04a99-5fa56ff5, #w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04a9e-5fa56ff5, #w-node-_191af0e9-28af-ea9a-3b26-f1b7edf04aa5-5fa56ff5, #w-node-_42683a8d-d339-98ef-31ca-a51785d00257-5fa56ff9, #w-node-_9a16f695-4914-a92c-91a5-9de5c37b5fad-5fa56ffb, #w-node-_38cfdeb8-4116-b6eb-16f6-ddfc0eb06e96-5fa57002, #w-node-_03f00c7d-38c0-eec1-013f-6c22dcebbb26-5fa57004 {
    grid-column: span 1 / span 1;
  }

  #w-node-f2611317-6976-4e05-cb99-edf59be8be6c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be72-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be78-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be7a-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be7c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9a-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9c-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8be9e-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea0-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea2-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea4-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea6-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8bea8-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beaa-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beac-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beae-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beb6-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beb8-5fa57008, #w-node-f2611317-6976-4e05-cb99-edf59be8beba-5fa57008 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}