@font-face {
  font-family: "Fa brands 400 (old)";
  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;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #000;
  --text-dark: #0e0e0e;
  --dark-gray: #6d6d6d;
  --primary: #fff000;
  --gray: #d9d9d9;
  --dark-gray-50: #afafaf80;
  --white-30: #ffffff4d;
  --primary-light: #eef4f8;
  --white-50: #ffffff80;
  --light-gray: #f9f9fa;
  --paragraph-gray: #535353;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

body {
  background-color: var(--white);
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

h1 {
  color: var(--black);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Saira Condensed, sans-serif;
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  filter: drop-shadow(2px 2px #fff00080);
  color: var(--black);
  letter-spacing: -2px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Saira Condensed, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--black);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Saira Condensed, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Saira Condensed, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2em;
}

h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Fredoka, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}

h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Saira Condensed, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
}

p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: #bbb000;
  align-items: center;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .35s;
}

a:hover {
  color: var(--black);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--dark-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

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

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  color: var(--black);
  text-align: center;
  background-image: url('../images/Quote-icon.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 20px 0;
  font-family: Fredoka, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

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

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

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

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

.section.top-small-space {
  padding-top: 60px;
}

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

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

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

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.base-container.padding-top {
  padding-top: 80px;
}

.base-container.contact-about, .base-container.padding-bot {
  padding-bottom: 40px;
}

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

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

.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.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

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

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

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

.spacing-columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

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

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.colors-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.black-style-guide {
  border: 1px solid var(--dark-gray-50);
  background-color: var(--white);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.colors-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  display: flex;
}

.color-container {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.white-style-guide {
  background-color: var(--black);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

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

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

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

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

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

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

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

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

.primary-button {
  grid-column-gap: 5px;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 50px;
  justify-content: center;
  padding: 22px 34px;
  font-size: 18px;
  transition: background-color .35s, color .35s;
  display: flex;
}

.primary-button:hover {
  background-color: var(--black);
  background-image: linear-gradient(270deg, var(--dark-gray), var(--primary));
  opacity: 1;
  color: var(--black);
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.serch-button {
  margin-left: auto;
  margin-right: auto;
}

.style-guide-div {
  width: 100%;
}

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

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

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

.link-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
}

.navbar {
  z-index: 100;
  background-color: var(--black);
  width: 100%;
  position: fixed;
}

.nav-container {
  z-index: 100;
  background-color: var(--black);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

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

.nav-link {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 15px;
  font-family: Saira Condensed, sans-serif;
  font-size: 20px;
}

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

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

.nav-dropdown-toggle {
  grid-column-gap: 5px;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 15px;
  display: flex;
}

.nav-dropdown-toggle:hover {
  color: var(--dark-gray);
}

.nav-dropdown-icon {
  margin-right: 0;
  font-size: 16px;
  position: static;
}

.nav-dropdown-list {
  background-color: var(--white);
  border: 1px solid #fff3;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: 220px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

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

.nav-dropdown-list.megamenu.w--open {
  width: 540px;
  display: flex;
  left: -330px;
}

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

.nav-dropdown-link {
  width: 100%;
  color: var(--black);
  text-transform: uppercase;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  transition: margin .35s, color .35s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--dark-gray);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--primary);
}

.nav-item-title {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Fredoka, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.nav-item-title:hover {
  color: var(--dark-gray);
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  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: 320px;
  transition: transform .6s;
}

.licensing-image:hover {
  transform: scale(1.1);
}

.licensing-title {
  width: 100%;
  padding-bottom: 40px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
  overflow: clip;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--black);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 500;
}

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

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--black);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-font-title {
  color: var(--white-30);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 20px;
  margin-bottom: 10px;
}

.utility-page-wrap {
  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;
}

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

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

.password-image {
  width: 140px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--white-30);
  min-width: 280px;
  min-height: 60px;
  color: var(--dark-gray);
  background-color: #0000;
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 10px 10px 10px 30px;
  font-size: 16px;
  line-height: 1em;
}

.password-input:focus {
  border: 1px solid var(--primary);
  color: var(--black);
}

.password-input::placeholder {
  color: var(--dark-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 690px;
  display: flex;
}

.changelog-heading {
  margin-bottom: 20px;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--white-30);
  min-width: 300px;
  height: auto;
  color: var(--dark-gray);
  background-color: #000;
  border-radius: 50px;
  margin-bottom: 0;
  padding: 18px 24px;
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
  color: var(--black);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  margin-top: 60px;
}

.blog-post-title {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  transition: color .3s;
}

.blog-post-title:hover {
  color: var(--primary);
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  padding-top: 2px;
  display: flex;
}

.sidebar-recent-posts-wrapper {
  margin-top: 20px;
}

.sidebar-recent-post-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.sidebar-recent-post {
  align-items: center;
  display: flex;
}

.blog-recent-post-title {
  margin-top: 0;
  font-size: 16px;
  transition: color .2s;
}

.blog-recent-post-title:hover {
  color: var(--primary);
}

.div-block {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.blog-recent-post-date {
  color: #969696;
  margin-top: 10px;
  font-size: 14px;
}

.sidebar-recent-posts {
  border: 1px solid var(--white-30);
  width: 35%;
  padding: 20px;
  position: sticky;
  top: 120px;
}

.blog-template-wrapper {
  width: 100%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: var(--black);
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #ffffffb3;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #ffffffb3;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

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

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--dark-gray);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.team-card-image {
  width: 100%;
  min-width: 100%;
  height: 310px;
  color: var(--primary);
  object-fit: cover;
}

.team-card-content-wrapper {
  text-align: center;
  padding-top: 24px;
}

.team-member-position {
  color: var(--dark-gray);
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 18px;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  justify-content: center;
  display: flex;
}

.team-social-icon {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 20px;
}

.team-grid-large {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.career-list-item-wrapper {
  border: 1px solid var(--white-30);
  align-items: center;
  padding: 20px 35px;
  transition: border-color .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.career-list-item-wrapper:hover {
  border-color: var(--primary);
}

.career-location, .career-type {
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.career-button-wrapper {
  text-align: right;
  width: 25%;
}

.career-title-mobile {
  color: var(--dark-gray);
  margin-bottom: 15px;
  display: none;
}

.career-position-wrapper {
  width: 30%;
}

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

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

.paragraph-large {
  font-size: 18px;
}

.banner-title-wrapper {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.banner-title-wrapper.padding-bottom {
  padding-bottom: 50px;
}

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

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.banner-description.why-us {
  max-width: 420px;
  color: var(--black);
  text-align: left;
}

.section-title-description {
  text-align: center;
  margin-top: 20px;
}

.accordion-toggle {
  grid-column-gap: 10px;
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-wrapper.service-details {
  margin-top: 60px;
}

.accordion-item {
  border: 1px solid var(--primary);
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
}

.accordion-wrap {
  width: 50%;
  margin-right: 15px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

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

.mb-30 {
  margin-bottom: 30px;
}

.link-with-line {
  color: var(--black);
  text-transform: uppercase;
}

.link-with-line:hover {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.job-position-sidebar-wrapper {
  grid-column-gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-icon {
  color: var(--primary);
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.contacts-wrapper {
  align-items: center;
  width: 100%;
  padding-top: 50px;
  display: flex;
}

.contacts-content-wrapper {
  width: 50%;
  padding-right: 40px;
}

.contacts-form-wrapper {
  border: 1px solid var(--black);
  background-color: var(--primary-light);
  width: 50%;
  margin-left: 40px;
  padding: 40px;
}

.contacts-divider {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contacts-detail {
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px solid var(--black);
  background-color: var(--white);
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  color: var(--dark-gray);
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1em;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
  color: var(--black);
}

.contacts-textarea::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  height: auto;
  color: var(--dark-gray);
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
  color: var(--black);
}

.contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.footer-link {
  color: var(--gray);
  transition: all .3s;
}

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

.footer-social-icons-wrapper {
  grid-column-gap: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.white-text {
  color: #fff;
}

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

.footer-brand {
  filter: drop-shadow(0 2px 5px #000000b3);
  color: #fff;
  margin-bottom: 10px;
  transition-property: all;
}

.footer-brand:hover {
  filter: drop-shadow(0px 2px 6px var(--primary));
}

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

.footer-social-icon {
  color: #fff;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.footer-social-icon:hover {
  color: var(--primary);
}

.footer-links-wrapper {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.search-wrap-input {
  height: 60px;
  color: var(--text-dark);
  background-color: #0000;
  border: 1px solid #0000;
  margin-bottom: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

.search-wrap-input::placeholder {
  color: var(--dark-gray);
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.search-close-button {
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 50px 50px auto auto;
}

.search-bottom-line {
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  opacity: .7;
}

.search-input {
  border: 1px solid var(--white-30);
  height: auto;
  color: var(--dark-gray);
  background-color: #0000;
  border-radius: 50px;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border: 1px solid var(--primary);
  color: var(--black);
}

.search-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

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

.footer-brand-description {
  color: var(--black);
  text-align: left;
  margin-top: 20px;
}

.customers-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.customer-wrapper {
  border: 1px solid var(--white-30);
  opacity: .5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  transition: border-color .3s, opacity .3s;
  display: flex;
}

.customer-wrapper:hover {
  border-color: var(--primary);
  opacity: 1;
}

.customer-title {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 12px;
}

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

.service-details-content-wrapper {
  width: 75%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-wrap-one-column {
  width: 100%;
}

.service-details-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.dark-gray-style-guide {
  background-color: var(--dark-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

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

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

.service-list-item {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.style-guide-content-wrapper {
  display: flex;
}

.about-1-video {
  background-image: url('../images/banner-3-1_1banner 3 (1).webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.about-1-video-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.features-container {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.features-item {
  width: 31%;
  display: flex;
}

.features-item.last-child {
  margin-right: 0;
}

.text-block {
  color: var(--primary);
  padding-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
}

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

.team-slider {
  background-color: #0000;
  max-width: 1400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px 80px;
  position: relative;
}

.team-slide-item {
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
}

.team-slider-image {
  object-fit: cover;
  width: 40%;
  max-width: 320px;
  height: 420px;
  display: block;
}

.team-slide-item-desc {
  margin-top: 30px;
  margin-bottom: 30px;
}

.team-icon {
  margin-right: 20px;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 16px;
  transition: all .2s;
}

.team-icon:hover {
  color: var(--black);
}

.team-icon.last-child {
  margin-right: 0;
}

.slide-3 {
  max-height: 580px;
}

.progressbar-gray-line {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 4px;
}

.progress-bar-90 {
  background-color: var(--primary);
  width: 100%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.progressbar-con {
  width: 100%;
}

.progress-bar-80 {
  background-color: var(--primary);
  width: 60%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.card-wrapper {
  display: flex;
}

.card-description {
  margin-top: 20px;
}

.card {
  border-left: 4px solid var(--primary);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33.33%;
  padding: 40px;
  display: flex;
  position: relative;
}

.about-3-content-wrap {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}

.about-3-content-wrap.left {
  width: 50%;
}

.about-3-content-wrapper {
  justify-content: space-between;
  margin-bottom: 60px;
  display: flex;
}

.progressbar-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
  display: flex;
}

.progressbar-content {
  width: 50%;
}

.progressbar-wrap {
  width: 50%;
  max-width: 480px;
}

.about-3-tab-link {
  width: 33.33%;
  color: var(--black);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--black);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.progressbar-active {
  background-color: var(--primary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  inset: auto 0% -4px auto;
}

.progressbar-number {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  bottom: 20px;
}

.progressbar-number.full {
  left: -40px;
}

.progressbar-item {
  margin-bottom: 30px;
}

.about-3-form-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.about-3-form {
  align-items: stretch;
  margin-top: 24px;
  display: flex;
}

.form-text-field {
  border: 1px solid var(--dark-gray-50);
  width: 360px;
  height: auto;
  color: var(--gray);
  background-color: #0000;
  border-radius: 50px;
  margin-bottom: 0;
  padding: 16px 20px 17px;
  font-size: 18px;
  line-height: 1;
}

.form-text-field:focus {
  border-style: solid;
  border-color: var(--black);
}

.form-text-field::placeholder {
  color: var(--gray);
  font-size: 18px;
}

.team-slider-content {
  width: 60%;
  margin-left: 40px;
}

.team-slider-mask {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-background {
  background-image: linear-gradient(90deg, var(--primary), transparent);
  width: 30%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.team-slider-left-arrow {
  border: 1px solid var(--white-30);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: border .3s;
  display: flex;
  inset: auto auto 20px 200px;
}

.team-slider-left-arrow:hover {
  border-color: var(--black);
}

.team-slider-left-arrow.right {
  left: 260px;
}

.team-slider-arrow-icon {
  transform: rotate(180deg);
}

.team-slider-arrow-icon.right {
  transform: none;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.project-template-content {
  grid-row-gap: 24px;
  flex-flow: column;
  width: 70%;
}

.project-template-info {
  width: 30%;
  padding-left: 80px;
}

.project-template-content-wrapper {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.project-template-info-wrap {
  grid-row-gap: 16px;
  flex-flow: column;
  margin-bottom: 30px;
  display: flex;
}

.project-template-info-wrap.last-child {
  margin-bottom: 0;
}

.project-template-banner-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.project-pagination-wrapper {
  border: 1px solid var(--white-30);
  align-items: stretch;
  margin-top: 80px;
  display: flex;
}

.project-template-images-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-template-image {
  object-fit: cover;
  width: 100%;
  height: 420px;
}

.project-template-empty-state {
  background-color: #0000;
  height: 0;
  padding: 0;
}

.progress-bar-91 {
  background-color: var(--primary);
  width: 91%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.landing-inner-page-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #fff3;
  position: absolute;
  inset: 0%;
}

.nav-dropdown-column {
  width: 33.3%;
}

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

.home-banner-section {
  padding-top: 230px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.secondary-button {
  border: 1px solid var(--primary);
  background-color: var(--black);
  color: var(--primary);
  letter-spacing: .5px;
  border-radius: 50px;
  justify-content: center;
  padding: 22px 34px;
  font-size: 18px;
  transition: all .35s;
  display: flex;
}

.secondary-button:hover {
  border-color: var(--black);
  background-color: var(--primary);
  color: var(--black);
}

.blog-item {
  box-shadow: 0 0 30px #0f5cfa0f;
}

.home-blog-image {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.home-blog-image.bottom {
  position: absolute;
  inset: 0%;
  transform: translate(0, 100%);
}

.blog-content-wrapper {
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
}

.blog-image-link {
  width: 100%;
  position: relative;
  overflow: clip;
}

.blog-list-wrapper {
  width: 100%;
}

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

.home-testimonials-mask {
  width: 65%;
  overflow: visible;
}

.testimonials-slider-position {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.testimonials-slider-author {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.home-testimonials-slider-arrow {
  border: 1px solid var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: background-color .4s;
  display: flex;
  top: auto;
  bottom: 0%;
  right: auto;
}

.home-testimonials-slider-arrow:hover {
  background-color: var(--primary);
}

.home-testimonials-slider-arrow.right {
  left: 70px;
}

.home-testimonials-slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 110px;
  display: flex;
  position: relative;
}

.testimonials-slider-name {
  margin-top: 0;
  margin-bottom: 5px;
}

.home-testimonials-slide {
  flex-direction: column;
  margin-right: 60px;
  display: flex;
}

.testimonials-text-wrapper {
  border-left: 4px solid var(--primary);
  padding: 30px 35px;
  position: relative;
}

.left-arrow {
  inset: auto 292px 0% auto;
  transform: rotate(180deg);
}

.slide-nav {
  display: none;
}

.author-img-con {
  border: 1px solid var(--white-30);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding: 10px;
}

.testimonials-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.testimonials-item-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.testimonials {
  position: relative;
}

.testimonials-mask {
  padding-bottom: 60px;
  position: static;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.testimonials-left-arrow {
  justify-content: flex-start;
  align-items: center;
  width: 84px;
  height: 60px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  top: auto;
  left: 0;
  right: 84px;
  overflow: visible;
}

.testimonials-left-arrow.right {
  border-left: 1px solid var(--white-30);
  justify-content: flex-end;
  align-items: center;
  left: 84px;
  right: 0;
}

.testimonials-quote {
  max-width: 930px;
  color: var(--black);
  font-size: 28px;
  font-weight: 500;
}

.testimonials-author {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.author-position {
  color: var(--gray);
  margin-top: 0;
  margin-bottom: 0;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonials-quote-author {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonials-slider-2 {
  background-color: #0000;
  max-width: 750px;
  height: 100%;
  padding-bottom: 80px;
}

.empty-state {
  color: var(--black);
  background-color: #0000;
}

.banner-section {
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

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

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-image {
  border: 1.5px solid var(--primary);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.our-services-image.home-gallery {
  width: 100%;
  height: 250px;
}

.our-services-content {
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.our-services-imag {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 210px;
}

.our-services-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.our-services-wrap {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 31%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.project-button-link {
  width: 50%;
  color: var(--black);
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.project-button-link:hover {
  color: var(--primary);
}

.project-button-link.left {
  border-right: 1px solid var(--white-30);
}

.project-prev-button-link-icon {
  margin-top: 2px;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.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-button-link-paragraph {
  font-size: 18px;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  width: 10px;
  height: 10px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.service-item {
  border: 1px solid var(--black);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 280px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
  overflow: clip;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

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

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.rich-text-style li {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#000, #000);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.rich-text-style blockquote {
  border-left-style: solid;
  border-left-color: var(--primary);
  text-align: left;
  background-image: none;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.black-overlay {
  background-color: #fff00073;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  transition: all .35s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0%;
}

.black-overlay:hover {
  background-color: #ffffff24;
}

.black-overlay.dark {
  background-color: #00000080;
}

.black-overlay.services:hover {
  background-color: #ffffff80;
}

.center-title {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.brand {
  width: auto;
  height: auto;
  filter: drop-shadow(0px 2px 5px var(--black));
  transition: all .35s cubic-bezier(.455, .03, .515, .955);
}

.brand:hover {
  filter: drop-shadow(0 1px 7px #fff000ad);
}

.style-guide-tab-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.tabs-style-guide {
  width: 100%;
}

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

.main-style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-tab-link {
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  background-color: var(--black);
  width: 100%;
  color: var(--white);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex;
}

.style-guide-tab-link:hover {
  color: var(--primary);
}

.style-guide-tab-link.w--current {
  background-color: var(--primary);
  color: #000;
}

.style-guide-tabs-menu {
  border-left: 1px solid var(--white);
  margin-bottom: 80px;
  display: flex;
}

.spacing-title {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

.banner-title-wrapper-2 {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.album-2-title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1em;
}

.primary-button-black {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: var(--black);
  text-align: center;
  letter-spacing: .5px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  font-size: 18px;
  transition: all .35s;
  display: flex;
}

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

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

.landing-inner-page-image {
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid #e9e9e9;
  width: 100%;
}

.landing-inner-page-image.banner {
  box-shadow: 0 6px 20px #00000014;
}

.landing-banner-content {
  z-index: 999;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
  inset: auto;
}

.banner-description-2 {
  max-width: 560px;
  margin-top: 20px;
  font-size: 18px;
}

.landing-banner-title {
  max-width: 910px;
  font-size: 70px;
}

.landing-home-pages-wrapper-banner {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.landing-banner-screens {
  z-index: 999;
  width: 100%;
  margin-bottom: -60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-inner-page-item {
  text-align: center;
  background-color: #0000;
  width: 100%;
  padding: 6px;
}

.landing-paragraph-style {
  color: #fff;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}

.section-landing-customers {
  background-color: var(--primary);
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

.landing-customers-content-left {
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  padding-right: 60px;
  display: flex;
}

.landing-customers-content-right {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 54%;
  display: grid;
}

.landing-section-heading-white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.landing-customers-icon-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.landing-icon-style {
  opacity: 1;
  filter: invert();
  max-height: 60px;
}

.paragraph-benefits-lp {
  color: #fff;
  width: 90%;
}

.landing-customers-layout {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.landing-section-title {
  width: 70%;
  margin: 0 auto;
}

.landing-inner-page-icon {
  z-index: 10;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 28px;
  display: flex;
  position: absolute;
  transform: rotate(-30deg);
}

.section-ttile-description {
  text-align: center;
  margin-top: 20px;
}

.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;
  justify-content: center;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-inner-page-title {
  text-transform: none;
}

.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;
}

.free-trial-wrapper-2 {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.free-trial-wrapper-2.landing {
  flex-direction: column;
  align-items: center;
  max-width: 690px;
  display: flex;
}

.free-trial-title-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
}

.section-banner {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-banner.landing-banner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 160px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.color-bg {
  background-color: var(--primary);
  height: 140px;
  position: absolute;
  inset: auto 0% 0%;
}

.details-page-title {
  font-size: 60px;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  display: flex;
}

.position-relative {
  position: relative;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.success-message {
  background-color: #0000;
}

.error-message {
  color: var(--black);
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.form-contacts {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.h2-style-guide-title {
  margin-top: 0;
  margin-bottom: 0;
}

.spacing-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.sg-title {
  margin-top: 0;
  margin-bottom: 0;
}

.sg-title.mb-15 {
  margin-bottom: 15px;
}

.sg-title.mb-30 {
  margin-bottom: 30px;
}

.flex-small-sg-con {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-sg-par {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-body-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.btn-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  display: flex;
}

.licensing-footer-link {
  color: #ffffffb3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.licensing-footer-link:hover {
  color: var(--black);
}

.clip {
  z-index: 10;
  border-radius: 5px;
  flex-flow: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-wrapper-text.bottom {
  position: absolute;
  bottom: -100%;
}

.button-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-icon.bottom-icon {
  position: absolute;
  bottom: -100%;
  left: -100%;
}

.block-line {
  margin-top: auto;
}

.line-bottom {
  background-color: var(--black);
  width: 0%;
  height: 1px;
}

.inner-page {
  padding-top: 230px;
  position: relative;
}

.inner-page.why-us, .inner-page.with-bottom-space {
  padding-bottom: 80px;
}

.desktop-hidden {
  display: none;
}

.center-home-title {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  position: relative;
}

.home-image-wrapper {
  width: 43%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.cover-image {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.banner-image-overlay {
  background-image: linear-gradient(90deg, var(--primary) 10%, transparent 75%);
  position: absolute;
  inset: 0% 0% -5% -5%;
  transform: rotate(4deg);
}

.button-wrapper-center {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.button-wrapper-center.padding-bot {
  padding-bottom: 80px;
}

.top-space {
  margin-top: 50px;
}

.banner-button {
  grid-column-gap: 5px;
  border: 2px solid var(--primary);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 50px;
  justify-content: center;
  padding: 20px 30px;
  font-size: 18px;
  transition: all .45s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.banner-button:hover {
  border-color: var(--black);
  background-color: var(--black);
  background-image: linear-gradient(270deg, var(--white), var(--primary));
  opacity: 1;
  color: var(--black);
}

.home-about-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 40px;
}

.section-title-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  margin-bottom: 60px;
}

.service-description {
  max-width: 320px;
}

.service-description.nomax {
  max-width: 100%;
}

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

.service-link {
  width: 100%;
  height: 100%;
}

.service-number {
  z-index: 2;
  color: var(--black);
  font-size: 150px;
  font-weight: 700;
  line-height: .8em;
  position: relative;
  left: -100px;
}

.padding-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.orange-overlay {
  background-color: var(--primary);
  opacity: .87;
  position: absolute;
  inset: 0%;
}

.orange-overlay.first {
  display: none;
}

.why-us-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  padding-bottom: 50px;
}

.why-number {
  filter: drop-shadow(0 2px 5px #000000b3);
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 90px;
  font-weight: 500;
  line-height: 1em;
}

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

.why-number.no-margin {
  margin-bottom: 5px;
}

.horizontal-line {
  background-color: var(--gray);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.project-item {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border-bottom: 1px solid var(--dark-gray-50);
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: clip;
}

.project-title-wrapp {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.project-number {
  font-size: 20px;
}

.project-line {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 1px;
}

.home-project-image {
  filter: grayscale();
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.project-description {
  color: var(--gray);
  position: relative;
}

.cta-image-bg {
  background-image: url('../images/Rectangle-1731-1_1Rectangle 1731 (1).webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 500px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.cta-content-wrapper {
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  margin-top: -50px;
  margin-bottom: -50px;
  display: flex;
  position: relative;
}

.cta-text {
  text-align: justify;
  font-size: 100px;
  line-height: .9em;
}

.vertical-align-right {
  justify-content: flex-start;
  align-items: flex-end;
}

.top-20 {
  margin-top: 20px;
}

.top-testimonial-line {
  background-color: var(--primary);
  width: 40px;
  height: 4px;
  position: absolute;
  inset: 0% 0% auto;
}

.vertical-16 {
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.social-link-wrapper {
  border: 1px solid var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.social-circle {
  background-color: var(--black);
  border-radius: 50%;
  width: 0%;
  height: 0%;
  position: absolute;
}

.footer-overlay {
  background-image: linear-gradient(180deg, var(--black) 56%, #fff00066);
  position: absolute;
  inset: 0%;
}

.footer-links-right {
  grid-column-gap: 50px;
  width: 100%;
  margin-left: auto;
}

.vertical-40 {
  grid-row-gap: 40px;
}

.secrion-insta {
  padding-bottom: 40px;
  position: relative;
}

.secrion-insta.with-top-space {
  padding-top: 80px;
}

.grid-top-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  width: 100%;
}

.boxed-intro {
  z-index: 20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.instagram-content {
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-title {
  text-align: center;
  max-width: 800px;
  font-size: 53px;
}

.instagram-main-container {
  min-height: 450px;
  position: relative;
}

.instagram-link {
  border: 1.6px solid var(--primary);
  pointer-events: none;
  cursor: default;
  position: absolute;
  overflow: hidden;
}

.instagram-link.image-01 {
  width: 12em;
  top: -180px;
  left: 0;
}

.instagram-link.image-02 {
  width: 16em;
  top: 0;
  left: 140px;
}

.instagram-link.image-03 {
  z-index: 2;
  pointer-events: none;
  cursor: default;
  width: 18em;
  max-height: 270px;
  bottom: 60px;
  left: 42%;
}

.instagram-link.image-04 {
  width: 19em;
  bottom: 0;
  left: 0;
}

.instagram-link.image-06 {
  width: 16em;
  top: -32%;
  right: 0%;
}

.instagram-link.image-07 {
  width: 14em;
  bottom: 0;
  right: 20px;
}

.instagram-link.image-09 {
  z-index: 0;
  width: 16em;
  top: 45%;
  right: 3%;
}

.light-ov {
  background-color: #00000021;
  position: absolute;
  inset: 0%;
}

.hover-circle-wrapper {
  z-index: 10;
  position: absolute;
  inset: 0%;
}

.hover-circle {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.outline-hover-circle {
  z-index: 10;
  border: 1px solid var(--white-50);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
}

.insragram-icon {
  color: var(--black);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
}

.number-wrapper {
  width: 100%;
}

.home-1-about-wrapper.padding-bot {
  padding-bottom: 30px;
}

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

.link-wrapper-top-space {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.left-slider-block {
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slider-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.video-to-image {
  position: absolute;
  inset: 0%;
}

.about-home-image {
  border: 2px solid var(--primary);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-left-wrapper {
  grid-row-gap: 30px;
  width: 46%;
}

.home-2-banner-description {
  max-width: 400px;
  color: var(--gray);
  font-size: 18px;
}

.hero-content {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.grid-wrapper {
  z-index: 25;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1360px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.grid-wrapper.bottom-border {
  border-bottom: 1px solid var(--white-30);
}

.home-hero-intro {
  grid-column-gap: 16px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between start;
  justify-items: start;
  width: 100%;
  display: grid;
}

.hero-title {
  max-width: 500px;
}

.circle-link {
  z-index: 100;
  background-color: var(--white);
  width: 140px;
  height: 140px;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #eff9fc4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: -70px;
  display: flex;
  position: relative;
}

.scroll-link-outline {
  border: 1px dashed #eff9fc4d;
  border-radius: 50%;
  width: 150%;
  height: 150%;
  position: absolute;
}

.hero-title-2-home {
  font-size: 56px;
  font-weight: 400;
}

.home-2-banner-section {
  display: flex;
  position: relative;
}

.logos-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--white-30);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 10vh;
  min-height: 10vh;
  display: grid;
  overflow: hidden;
}

.logos-looping-wrapper {
  border-top: 1px solid var(--white-30);
  overflow: hidden;
}

.logos-looping-wrapper.left {
  display: flex;
}

.logos-looping-wrapper.right, .logos-looping-wrapper.right-mobile-hidden {
  border-left: 1px solid var(--white-30);
  justify-content: flex-end;
  display: flex;
}

.lopping-logos {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.lopping-logos.right {
  border-left: 1px solid var(--white-30);
}

.logo {
  border-right: 1px solid var(--white-30);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 14vw;
  min-width: 200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.logo-image {
  opacity: .3;
}

.about-2-content {
  grid-column-gap: 16px;
  grid-row-gap: 80px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-2-item {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.about-2-item.privacy {
  grid-template-columns: 1fr;
}

.about-2-info {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  max-width: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.about-2-info.privacy {
  max-width: 100%;
}

.medium-width-intro {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 645px;
  display: grid;
}

.growing-image {
  width: 60%;
  position: relative;
}

.growing-image.left {
  margin-right: 24px;
}

.growing-image.small {
  width: 35%;
}

.growing-image.right {
  margin-left: 24px;
}

.growing-images {
  flex-flow: row;
  justify-content: space-between;
  height: 35vw;
  min-height: 100%;
  display: flex;
}

.testimonial-slide-wrapper {
  justify-content: center;
  align-items: center;
  min-height: 700px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.slider-circle {
  border: 1px solid #eff9fc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: auto auto auto 0%;
}

.slider-circle.right {
  left: auto;
  right: 0;
}

.left-arrow-image {
  position: relative;
  transform: rotate(180deg);
}

.left-arrow-image.right {
  transform: rotate(0);
}

.background-wrapper {
  width: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.testimonial-background {
  background-image: url('../images/pexels-pixabay-53176-2-1_1pexels-pixabay-53176 (2) (1).webp');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.service-name {
  color: var(--black);
  font-size: 22px;
  font-weight: 500;
}

.project-2-item {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border-bottom: 1px solid var(--dark-gray-50);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  position: relative;
  overflow: clip;
}

.home-2-project-image {
  filter: grayscale();
  width: 100%;
  height: 100%;
  overflow: clip;
}

.project-2-left {
  grid-row-gap: 24px;
  flex-flow: column;
}

.project-2-overlay {
  background-color: #ffffff1a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: translate(0, 100%);
}

.project-2-name {
  color: var(--black);
  letter-spacing: -1px;
  font-size: 36px;
  font-weight: 500;
}

.project-2-name:hover {
  color: var(--dark-gray);
}

.home-2-image-wrapper {
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.testimonials-overlay {
  background-color: #04060ab3;
  position: absolute;
  inset: 0%;
}

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

.looping-hero-top {
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 110px;
  display: flex;
}

.looping-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
}

.looping-heading-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  padding-right: 48px;
  display: grid;
}

.looping-heading {
  letter-spacing: -3px;
  font-size: 74px;
  font-weight: 400;
  line-height: 1.2em;
}

.heading-separator {
  background-color: var(--white-30);
  width: 60px;
  height: 2px;
}

.home-hero-banner {
  z-index: 10;
  justify-content: center;
  height: 450px;
  display: flex;
  position: relative;
}

.home-3-hero-image {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.banner-3-overlay {
  background-color: #04080c4d;
  position: absolute;
  inset: 0%;
}

.circle-link-wrapper {
  margin-top: -70px;
}

.circle-2-link {
  z-index: 100;
  border: 1px none var(--white-30);
  background-color: var(--white);
  width: 140px;
  height: 140px;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.outline {
  border: 1px solid #eff9fc4d;
  border-radius: 50%;
  margin: 9px;
  position: absolute;
  inset: 0%;
}

.cicrle-link-hover {
  background-color: var(--black);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.circle-text {
  z-index: 10;
  position: relative;
}

.hero-bottom {
  justify-content: center;
  align-items: stretch;
  height: 65px;
  display: flex;
}

.scroll-link {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  border-right: 1px solid var(--white-30);
  border-left: 1px solid var(--white-30);
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
  overflow: hidden;
}

.scroll-link:hover {
  color: var(--dark-gray);
}

.scroll-link-image {
  transform: rotate(90deg);
}

.service-3-item {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.our-services-3-content {
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.our-services-3-bg {
  object-fit: cover;
  width: 100%;
  height: 300px;
  transition: transform .8s;
}

.our-services-3-bg:hover {
  transform: scale(1.1);
}

.sevice-3-list-wrapper {
  grid-row-gap: 60px;
}

.service-3-top {
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}

.sevtion-logos-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--white-30);
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  min-height: 200px;
  display: grid;
  overflow: hidden;
}

.logo-title {
  border-top: 1px solid var(--white-30);
  border-left: 1px solid var(--white-30);
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.project-grid {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-collection-item {
  width: 85%;
}

.project-collection-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
}

.project-collection-item:nth-child(2n) {
  margin-left: auto;
}

.project-card-content {
  width: 100%;
  min-height: 600px;
  color: var(--black);
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-card-image {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between;
  display: flex;
  position: relative;
  overflow: hidden;
}

.medium-width {
  max-width: 550px;
}

.body-display {
  color: var(--black);
  font-size: 18px;
  line-height: 1.6em;
}

.card-paralax-wrapper {
  position: absolute;
  inset: 0%;
}

.project-background {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.home-3-about-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  margin-left: 40px;
  display: flex;
}

.home-3-about-wrapper {
  justify-content: flex-start;
  align-items: center;
}

.content-wrapper-home-3 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.flex-right {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.service-3-description {
  max-width: 390px;
}

.position-team {
  color: var(--dark-gray);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.hero-banner-image {
  width: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.banner-litle-right {
  z-index: 10;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 740px;
  display: flex;
  position: relative;
}

.why-us-banner-wrapp {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.large-width {
  max-width: 880px;
}

.top-overlay {
  background-image: linear-gradient(180deg, var(--primary), transparent);
  position: absolute;
  inset: 0%;
}

.progress-bar-title {
  margin-bottom: 16px;
}

.logo-image-opacity-70 {
  opacity: .7;
}

.banner-about-title-wrapp {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.about-title {
  max-width: 450px;
}

.about-banner-description {
  max-width: 340px;
  color: var(--black);
  font-size: 20px;
}

.home-1-title {
  font-size: 82px;
  font-style: italic;
  font-weight: 500;
}

.service-collection-grid {
  grid-column-gap: 15px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-collection-grid.home-gallery {
  margin-bottom: 30px;
}

.services-wrap {
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.pagination-button {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
  border-radius: 50px;
  margin-top: 40px;
  font-size: 16px;
  transition: background-color .3s, color .3s;
}

.pagination-button:hover {
  background-color: var(--white);
  color: var(--black);
}

.looping-hero-inner {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services-3-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.service-number-3 {
  z-index: 2;
  color: var(--black);
  font-size: 150px;
  font-weight: 700;
  line-height: .8em;
  position: absolute;
  left: -40px;
}

.service-number-3.bottom {
  bottom: 0;
}

.service-hero-image {
  width: 75%;
  height: 370px;
  position: relative;
}

.circle-link-services {
  z-index: 100;
  background-color: var(--white);
  width: 140px;
  height: 140px;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #eff9fc4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: -70px;
  display: flex;
  position: relative;
}

.accordion-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: relative;
}

.plus-line-hor {
  background-color: var(--black);
  width: 24px;
  height: 1px;
}

.plus-line-ver {
  background-color: var(--black);
  width: 1px;
  height: 24px;
  position: absolute;
}

.pagination {
  margin-top: 0;
  margin-bottom: 20px;
}

.banner-image {
  width: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.dash {
  background-color: var(--white-30);
  width: 24px;
  height: 1px;
  position: relative;
}

.top-project-info {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.white-dash {
  background-color: var(--black);
  position: absolute;
  inset: 0%;
}

.project-details-wrapper {
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.career-collection-list {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.contact-link {
  color: var(--black);
  font-size: 18px;
}

.contact-link:hover {
  color: #666000;
}

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

.blog-details-wrapper {
  grid-column-gap: 60px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-rich-wrapper {
  width: 65%;
}

.blog-recent-list {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.blog-title-wrapper {
  max-width: 900px;
}

._404 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 200px;
  font-weight: 700;
  line-height: 1em;
}

.bottom-10 {
  margin-bottom: 10px;
}

.hire-popup {
  z-index: 1000;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-popup-wrap:hover {
  color: #fff;
}

.hire-paragraph {
  color: #fff;
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.text-orange {
  color: #f69c20;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition-property: none;
}

.hire-buttons:hover {
  opacity: 1;
  color: #ffffffb3;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.buy-this-template {
  z-index: 1000;
  opacity: 1;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.buy-this-template:hover {
  opacity: 1;
  color: #fff;
}

.btn-icon {
  margin-right: 8px;
}

.all-templates {
  z-index: 1000;
  color: #4353ff;
  letter-spacing: 0;
  text-transform: none;
  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;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.all-templates:hover {
  opacity: 1;
  color: #4353ff;
}

.promotion-labels-wrapper {
  z-index: 9999;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-left {
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-label-buttons-wrapper {
  grid-column-gap: 20px;
  display: flex;
}

.promotion-label-all-templates {
  z-index: 1000;
  color: #4353ff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  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;
  text-decoration: none;
  display: flex;
}

.promotion-label-all-templates:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-buy-this-template {
  z-index: 1000;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  opacity: 1;
  color: #fff;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  background-color: #1c276d;
  border-radius: 4px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
}

.promotion-label-button:hover {
  color: #ffffffb3;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.button-wrapper-left {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.button-wrapper-left.padding-top-button {
  padding-top: 30px;
}

.brand-logo {
  width: 130px;
  height: auto;
}

.test {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
}

.test.about-2-content {
  font-style: normal;
}

.heading {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
}

.nav-bg {
  z-index: 80;
  background-color: var(--black);
  width: 200%;
  height: 102%;
  position: absolute;
  top: 0;
  left: -10%;
  transform: rotate(-1.5deg);
}

.hero-paragraph {
  padding-top: 15px;
  padding-left: 10px;
  font-size: 22px;
  font-style: italic;
}

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

.footer-links {
  grid-row-gap: 40px;
  width: 78%;
}

.video-to-image-copy {
  position: absolute;
  inset: 0%;
}

.home-about-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-service-heading {
  filter: drop-shadow(2px 2px 0px var(--white));
}

.why-choose-vid {
  border: 2px solid var(--primary);
  object-fit: cover;
  width: 100%;
  max-height: 430px;
}

.service-area-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 30px;
  display: grid;
}

.service-area-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  filter: drop-shadow(0 2px 5px #0000);
  color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition-property: all;
  display: flex;
}

.service-area-item:hover {
  filter: drop-shadow(0 2px 5px #fffb00a3);
  color: #3d3d3d;
}

.area-map-icon {
  width: 70px;
  height: 70px;
  filter: drop-shadow(2px 2px 0px var(--primary));
}

.centered {
  text-align: center;
}

.padding-top {
  padding-top: 80px;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.open-sans {
  font-family: Open Sans, sans-serif;
}

.code-embed {
  padding-bottom: 1.8rem;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  .section.top-small-space, .section.top-bottom-small-space {
    padding-top: 60px;
  }

  .base-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-system {
    width: 100%;
  }

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

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    z-index: 30;
    background-color: var(--white);
    flex-direction: column;
    width: 65%;
    padding-bottom: 40px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

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

  .nav-link {
    width: 100%;
    color: var(--text-dark);
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    font-family: Inter, sans-serif;
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown-icon {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    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: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .close-menu-button {
    padding: 0 20px 0 0;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    filter: invert();
    align-self: stretch;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    max-width: 640px;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .sidebar-recent-posts {
    width: 100%;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .team-grid-large {
    grid-template-columns: 1fr 1fr;
  }

  .style-guide-button-wrapper {
    width: 45%;
  }

  .career-list-item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .career-location, .career-location-wrapper, .career-type-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion-wrapper.service-details {
    margin-top: 40px;
  }

  .job-position-sidebar-wrapper {
    top: 20px;
  }

  .contacts-wrapper {
    align-items: flex-start;
  }

  .contacts-form-wrapper {
    margin-left: 0;
    padding: 30px;
  }

  .contacts-title {
    margin-bottom: 40px;
  }

  .footer-social-icons-wrapper {
    margin-top: 10px;
  }

  .footer-wrapper {
    grid-row-gap: 50px;
    flex-wrap: wrap;
  }

  .footer-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .customers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-card-wrapper {
    grid-template-columns: 1fr;
  }

  .service-details-content-wrapper {
    width: 100%;
  }

  .headings-container {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .about-1-video {
    width: 100%;
    min-height: 340px;
  }

  .features-item {
    width: 30%;
    margin-right: 20px;
  }

  .text-block {
    padding-right: 15px;
  }

  .team-slider-image {
    min-height: 340px;
  }

  .card-wrapper {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    width: 47%;
  }

  .about-3-content-wrap {
    width: 50%;
  }

  .progressbar-wrap {
    max-width: 360px;
  }

  .form-text-field {
    width: 300px;
  }

  .team-slider-mask {
    width: 90%;
  }

  .team-slider-background {
    width: 35%;
  }

  .team-slider-left-arrow {
    left: 160px;
  }

  .team-slider-left-arrow.right {
    left: 220px;
  }

  .project-template-info {
    margin-left: 40px;
    padding-left: 0;
  }

  .project-template-banner-image {
    height: 400px;
  }

  .project-template-image {
    height: 360px;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .home-banner-section {
    padding-top: 130px;
  }

  .blog-list {
    grid-column-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-list.tablet-2-column {
    grid-template-columns: 1fr 1fr;
  }

  .home-testimonials-mask {
    width: 90%;
  }

  .home-testimonials-slider {
    padding-bottom: 90px;
  }

  .testimonials-text-wrapper {
    padding: 15px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .testimonials-quote {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .testimonials-quote-author {
    margin-top: 30px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .our-services-imag {
    height: 230px;
  }

  .our-services-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
  }

  .our-services-wrap {
    width: 47%;
  }

  .our-services-wrap:last-child {
    width: 100%;
  }

  .content-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .service-item {
    min-height: 250px;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 40px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    filter: invert();
    margin-bottom: 4px;
  }

  .brand-tablet {
    display: block;
  }

  .spacing-system-image-2 {
    width: 75%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .style-guide-tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .spacing-title {
    font-size: 25px;
  }

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

  .primary-button-black:hover {
    opacity: 1;
  }

  .landing-banner-content {
    margin-bottom: 70px;
    position: relative;
    left: 0%;
    right: 0%;
  }

  .landing-banner-title {
    font-size: 65px;
  }

  .landing-home-pages-wrapper-banner {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing-inner-page-item.home-screen-banner, .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-customers-content-left {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .landing-customers-content-right {
    grid-row-gap: 30px;
    width: 100%;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .landing-section-title {
    width: 80%;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .section-banner.landing-banner {
    background-image: none;
    align-items: center;
    padding-top: 130px;
  }

  .color-bg {
    height: 100px;
  }

  .details-page-title {
    font-size: 48px;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    width: 100%;
  }

  .style-guide-body-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrap.rows-30 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .inner-page {
    padding-top: 150px;
  }

  .tablet-hidden {
    display: none;
  }

  .desktop-hidden {
    display: block;
  }

  .desktop-hidden.top-40 {
    margin-top: 40px;
  }

  .center-home-title {
    max-width: 430px;
  }

  .cover-image.tablet-hidden-image {
    display: none;
  }

  .home-services {
    grid-template-columns: 1fr 1fr;
  }

  .service-number {
    left: -230px;
  }

  .why-number {
    margin-bottom: 20px;
  }

  .project-title-wrapp {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .project-number {
    margin-top: 7px;
  }

  .home-project-image {
    height: 250px;
    position: static;
  }

  .cta-text {
    font-size: 80px;
  }

  .instagram-main-container {
    min-height: 320px;
  }

  .instagram-link.image-01 {
    width: 15%;
    top: -170px;
  }

  .instagram-link.image-02 {
    width: 20%;
    top: -40px;
    left: 90px;
  }

  .instagram-link.image-03 {
    width: 30%;
    left: 37%;
  }

  .instagram-link.image-04 {
    width: 23%;
  }

  .instagram-link.image-06 {
    width: 20%;
  }

  .instagram-link.image-07 {
    width: 25%;
    right: 40px;
  }

  .instagram-link.image-09 {
    width: 20%;
  }

  .hero-content {
    margin-top: 60px;
    padding-bottom: 0;
  }

  .home-hero-intro {
    grid-row-gap: 24px;
    text-align: center;
    justify-content: center;
    justify-items: center;
  }

  .circle-link {
    margin-top: 70px;
    margin-bottom: -90px;
    margin-right: 0;
  }

  .hero-title-2-home {
    font-size: 50px;
  }

  .home-2-banner-section {
    justify-content: center;
    align-items: stretch;
  }

  .about-2-item {
    grid-template-columns: 1fr;
  }

  .about-2-info {
    max-width: 100%;
    padding-bottom: 0;
  }

  .growing-images {
    height: 45vw;
    min-height: 400px;
  }

  .home-2-project-image {
    height: 250px;
    position: static;
  }

  .home-2-image-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
  }

  .looping-hero-top {
    margin-top: 60px;
  }

  .looping-heading {
    font-size: 50px;
  }

  .project-card-content {
    min-height: 450px;
  }

  .home-3-about-right {
    width: 47%;
  }

  .home-3-about-wrapper {
    justify-content: space-between;
  }

  .content-wrapper-home-3 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-title {
    max-width: 340px;
  }

  .service-collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-wrap:last-child {
    width: 100%;
  }

  .services-3-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .service-hero-image {
    height: 400px;
  }

  .circle-link-services {
    order: 0;
  }

  .circle-link-services.w--current {
    order: -1;
  }

  .project-details-wrapper {
    width: 90%;
  }

  .blog-list-short {
    grid-column-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-details-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .blog-rich-wrapper {
    width: 100%;
  }

  .blog-recent-list {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  ._404 {
    font-size: 150px;
  }

  .hire-popup-wrap, .promotion-labels-wrapper, .promotion-label-holder {
    display: none;
  }

  .brand-logo {
    width: 90px;
  }

  .nav-bg {
    display: none;
  }

  .area-map-icon {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: -2px;
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  blockquote {
    font-size: 18px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    width: 100%;
  }

  .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-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

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

  .spacing-columns {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

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

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

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

  .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .link-wrapper {
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .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;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-wrapper {
    max-width: 470px;
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 1;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .team-grid-large {
    grid-template-columns: 1fr;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .career-list-item-wrapper {
    flex-wrap: wrap;
    padding-bottom: 25px;
  }

  .career-button-wrapper {
    text-align: center;
    width: 100%;
  }

  .career-title-mobile {
    display: block;
  }

  .career-position-wrapper, .career-location-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .career-type-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .job-position-sidebar-wrapper {
    position: relative;
    top: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-title {
    margin-bottom: 20px;
  }

  .footer-social-icons-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .footer-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
    width: 40%;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .footer-logo-wrapper {
    align-items: center;
    width: 100%;
  }

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

  .customer-wrapper {
    height: 240px;
  }

  .testimonials-card-wrapper {
    grid-row-gap: 40px;
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .service-details-content-wrapper {
    margin-top: 60px;
  }

  .about-1-video {
    min-height: 280px;
  }

  .about-1-video-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .features-container {
    flex-wrap: wrap;
  }

  .features-item {
    width: 100%;
    margin-bottom: 24px;
    margin-right: 0;
  }

  .team-slider {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .team-slide-item {
    flex-wrap: wrap;
    width: 100%;
  }

  .team-slider-image {
    object-position: 50% 20%;
    width: 100%;
    height: 340px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-slide-item-desc {
    margin-top: 20px;
  }

  .card {
    width: 100%;
  }

  .about-3-content-wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-3-content-wrap.left {
    width: 100%;
  }

  .about-3-content-wrapper {
    grid-row-gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .progressbar-wrapper {
    flex-wrap: wrap;
  }

  .progressbar-content {
    text-align: center;
    width: 100%;
  }

  .progressbar-wrap {
    width: 100%;
    max-width: 440px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .about-3-form-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .about-3-form {
    flex-wrap: wrap;
  }

  .team-slider-content {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .team-slider-background {
    width: 100%;
    height: 35%;
    inset: 0% 0% auto;
  }

  .team-slider-left-arrow {
    inset: 30px 50px auto 0%;
  }

  .team-slider-left-arrow.right {
    left: 50px;
    right: 0;
  }

  .project-template-content {
    width: 100%;
  }

  .project-template-info {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }

  .project-template-content-wrapper {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .project-template-info-wrap {
    margin-bottom: 20px;
  }

  .project-template-banner-image {
    height: 300px;
  }

  .project-template-images-list {
    grid-template-columns: 1fr;
  }

  .project-template-image {
    height: 300px;
  }

  .home-banner-section {
    padding-bottom: 60px;
  }

  .blog-item {
    width: 100%;
  }

  .blog-list, .blog-list.tablet-2-column {
    grid-template-columns: 1fr;
  }

  .home-testimonials-mask {
    width: 95%;
  }

  .testimonials-slider-author {
    margin-top: 30px;
  }

  .home-testimonials-slide {
    margin-right: 40px;
  }

  .left-arrow {
    left: 0;
    right: auto;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .testimonials-quote {
    max-width: 450px;
    font-size: 18px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .testimonials-slider-2 {
    max-width: 500px;
    padding-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-imag {
    height: 210px;
  }

  .our-services-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .our-services-wrap {
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .service-item {
    width: 100%;
    min-height: 240px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .style-guide-tab-content-wrapper {
    grid-row-gap: 40px;
  }

  .grid-header {
    width: 100%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-tab-link {
    border-bottom: 1px solid var(--white);
    border-top-style: none;
  }

  .style-guide-tabs-menu {
    border-top: 1px solid var(--white);
    flex-direction: column;
    margin-bottom: 40px;
  }

  .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;
    flex: 1;
    width: 100%;
  }

  .landing-banner-content {
    justify-content: center;
    align-items: center;
  }

  .landing-banner-title {
    font-size: 50px;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .landing-banner-screens {
    margin-bottom: -50px;
  }

  .section-landing-customers {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .landing-customers-content-left {
    text-align: center;
    align-items: center;
    width: 70%;
  }

  .landing-customers-icon-wrapper {
    width: 90%;
  }

  .paragraph-benefits-lp {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .landing-section-title {
    width: 70%;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .free-trial-title-2 {
    margin-bottom: 30px;
  }

  .section-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-banner.landing-banner {
    background-image: none;
    padding-top: 120px;
  }

  .details-page-title {
    font-size: 44px;
  }

  .spacing-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sg-title.mb-15 {
    margin-bottom: 10px;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .btn-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .inner-page.why-us {
    padding-top: 0;
    padding-bottom: 0;
  }

  .inner-page.with-bottom-space {
    padding-bottom: 60px;
  }

  .center-home-title {
    max-width: 310px;
  }

  .banner-image-overlay {
    left: -10%;
    transform: rotate(0);
  }

  .button-wrapper-center.padding-bot {
    padding-top: 15px;
  }

  .top-space {
    margin-top: 40px;
  }

  .home-about-right {
    width: 100%;
    margin-left: 0;
  }

  .section-title-grid {
    margin-bottom: 40px;
  }

  .service-number {
    font-size: 120px;
    left: -160px;
  }

  .why-number {
    font-size: 60px;
  }

  .project-item {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr .75fr;
  }

  .cta-image-bg {
    min-height: 380px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-right: 40px;
  }

  .cta-content-wrapper {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .cta-text {
    font-size: 60px;
  }

  .footer-links-right {
    grid-row-gap: 50px;
    flex-flow: wrap;
    margin-left: 0;
  }

  .secrion-insta.with-top-space {
    padding-top: 60px;
  }

  .boxed-intro {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cta-title {
    font-size: 40px;
  }

  .instagram-link.image-01 {
    width: 20%;
  }

  .instagram-link.image-02 {
    width: 28%;
  }

  .instagram-link.image-07 {
    right: 20px;
  }

  .hover-circle-wrapper {
    display: none;
  }

  .home-1-about-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .about-home-image {
    height: 350px;
  }

  .about-left-wrapper {
    grid-row-gap: 40px;
    width: 100%;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-title-2-home {
    font-size: 46px;
  }

  .about-2-info {
    grid-row-gap: 20px;
  }

  .growing-images {
    min-height: 300px;
  }

  .testimonial-slide-wrapper {
    min-height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .project-2-item {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .project-2-name {
    font-size: 32px;
  }

  .home-2-image-wrapper {
    height: 400px;
  }

  .looping-heading {
    font-size: 46px;
  }

  .home-hero-banner {
    height: auto;
    min-height: 350px;
  }

  .home-3-hero-image {
    height: 350px;
    min-height: 350px;
  }

  .circle-2-link.about {
    width: 100px;
    height: 100px;
  }

  .service-3-item {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sevtion-logos-wrapper {
    grid-template-columns: 1fr 1fr;
    min-height: 200px;
  }

  .logo-title {
    border-right: 1px solid var(--white-30);
  }

  .project-grid {
    grid-row-gap: 40px;
  }

  .project-card-content {
    padding: 30px;
  }

  .home-3-about-right {
    width: 100%;
    margin-left: 0;
  }

  .home-3-about-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .content-wrapper-home-3 {
    flex-wrap: wrap;
    width: auto;
  }

  .hero-banner-image {
    position: static;
  }

  .why-us-banner-wrapp {
    margin-top: 40px;
  }

  .banner-about-title-wrapp {
    grid-row-gap: 24px;
    flex-flow: wrap;
  }

  .about-title {
    max-width: 100%;
  }

  .service-number-3 {
    font-size: 120px;
  }

  .service-hero-image {
    height: 300px;
  }

  .project-details-wrapper {
    width: 100%;
  }

  .blog-list-short {
    grid-template-columns: 1fr;
  }

  ._404 {
    font-size: 130px;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap, .promotion-label-buttons-wrapper {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .footer-logo {
    max-width: 140px;
  }

  .footer-links {
    width: 100%;
  }

  .service-area-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h5 {
    font-size: 21px;
  }

  .base-container.full-width {
    padding-left: 15px;
    padding-right: 15px;
  }

  .base-container.padding-top {
    padding-top: 40px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-link {
    width: 99%;
    color: var(--black);
    letter-spacing: 1px;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .blog-template-wrapper {
    margin-bottom: 80px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.6em;
  }

  .accordion-toggle {
    grid-column-gap: 15px;
  }

  .job-position-sidebar-wrapper {
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    margin-top: 30px;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    margin-bottom: 20px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    width: 66%;
  }

  .footer-links-wrapper {
    align-items: center;
  }

  .customers-grid {
    grid-template-columns: 1fr;
  }

  .team-slide-item {
    width: 100%;
  }

  .card {
    padding: 20px;
  }

  .progressbar-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .about-3-form-wrapper {
    text-align: center;
    justify-content: center;
    align-items: stretch;
  }

  .about-3-form {
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
  }

  .form-text-field, .team-slider-mask {
    width: 100%;
  }

  .project-pagination-wrapper {
    flex-wrap: wrap;
  }

  .home-testimonials-mask {
    margin-top: 0;
  }

  .home-testimonials-slide {
    margin-right: 30px;
  }

  .testimonials-quote {
    max-width: 280px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .testimonials-slider-2 {
    max-width: 300px;
  }

  .our-services-imag {
    height: 190px;
  }

  .our-services-wrapper {
    flex-flow: column;
  }

  .our-services-wrap {
    width: 100%;
  }

  .project-button-link {
    justify-content: flex-end;
    width: 100%;
    height: 70px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
  }

  .project-button-link.left {
    border-bottom: 1px solid var(--white-30);
    border-right-style: none;
    justify-content: flex-start;
    padding-left: 40px;
  }

  .home-9-team-item {
    width: 100%;
  }

  .service-item {
    min-height: 210px;
  }

  .service-item.even-item {
    flex-flow: column-reverse;
  }

  .menu-wrap {
    padding-top: 70px;
  }

  .home-23-team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .landing-banner-content {
    flex-direction: column;
    max-width: none;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    inset: auto 0% 28%;
  }

  .landing-banner-title {
    max-width: 350px;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 0px;
  }

  .landing-customers-content-right {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    text-align: center;
  }

  .landing-section-title {
    width: 100%;
  }

  .landing-home-pages-wrapper, .landing-inner-pages-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .section-banner.landing-banner {
    background-image: none;
    padding-top: 110px;
  }

  .details-page-title {
    font-size: 42px;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .licensing-footer-link {
    text-align: center;
    line-height: 1.6em;
  }

  .inner-page {
    padding-top: 140px;
  }

  .desktop-hidden.top-40 {
    margin-bottom: 30px;
  }

  .home-image-wrapper {
    opacity: .74;
    width: 70%;
  }

  .banner-button {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-about-right {
    grid-template-columns: 1fr;
  }

  .section-title-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .home-services {
    grid-template-columns: 1fr;
  }

  .service-number {
    font-size: 100px;
    left: -270px;
  }

  .why-us-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .project-item {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-image-bg {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 15px;
  }

  .cta-content-wrapper {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-text {
    font-size: 40px;
  }

  .top-20 {
    margin-top: 10px;
  }

  .footer-links-right {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .vertical-40 {
    justify-content: flex-start;
    align-items: center;
  }

  .secrion-insta {
    padding-bottom: 65px;
  }

  .cta-title {
    font-size: 32px;
  }

  .instagram-main-container {
    min-height: 170px;
  }

  .instagram-link.image-01 {
    top: -80px;
    left: 11px;
  }

  .instagram-link.image-02 {
    width: 32%;
    left: 50px;
  }

  .instagram-link.image-03 {
    width: 36%;
    left: 50%;
  }

  .instagram-link.image-04 {
    width: 35%;
  }

  .instagram-link.image-06 {
    width: 30%;
  }

  .instagram-link.image-07 {
    width: 40%;
    right: 15px;
  }

  .instagram-link.image-09 {
    width: 30%;
    display: none;
  }

  .about-home-image {
    height: 300px;
  }

  .about-left-wrapper {
    grid-row-gap: 30px;
  }

  .logos-looping-wrapper.right-mobile-hidden {
    display: none;
  }

  .about-2-content {
    grid-row-gap: 40px;
  }

  .project-2-item {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-2-image-wrapper {
    height: 320px;
  }

  .circle-2-link.about {
    width: 80px;
    height: 80px;
  }

  .service-3-item {
    grid-template-columns: 1fr;
  }

  .our-services-3-bg {
    height: 300px;
  }

  .logo-title {
    text-align: center;
  }

  .project-collection-item {
    width: 100%;
  }

  .project-card-content {
    padding: 20px;
  }

  .home-3-about-right {
    grid-template-columns: 1fr;
  }

  .service-collection-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .services-wrap {
    width: 100%;
  }

  .services-3-wrapper {
    grid-template-columns: 1fr;
  }

  .service-number-3 {
    font-size: 100px;
    bottom: 0;
    left: -30px;
  }

  .top-project-info {
    grid-row-gap: 16px;
    flex-flow: wrap;
  }

  .blog-recent-list {
    grid-template-columns: 1fr;
  }

  ._404 {
    font-size: 110px;
  }

  .button-wrapper-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .brand-logo {
    width: 85px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .footer-links {
    justify-content: flex-start;
    align-items: center;
  }

  .service-area-grid {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .area-map-icon {
    width: 50px;
    height: 50px;
  }

  .testimonail-embed {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

#w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a4-febd7c04, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a8-febd7c04, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991ac-febd7c04, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b2-febd7c04, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b8-febd7c04, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991be-febd7c04 {
  justify-self: center;
}

#w-node-_1bb34fe5-1cf0-fe7d-a867-004ce5705e77-e5705e74 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_80270f24-4c81-7b05-39d7-8a6712c1cef2-12c1ceee {
  justify-self: start;
}

#w-node-_80270f24-4c81-7b05-39d7-8a6712c1cef5-12c1ceee {
  justify-self: stretch;
}

#w-node-_58d40b5e-c5fb-abd8-e4d7-51f602cd0507-febd7c77 {
  justify-self: end;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e6564ff6-febd7c78 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e6564ff7-febd7c78 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e6564fff-febd7c78 {
  justify-self: center;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e6565002-febd7c78 {
  place-self: center start;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e656500b-febd7c78 {
  justify-self: center;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e656500e-febd7c78 {
  place-self: center start;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e6565017-febd7c78 {
  justify-self: center;
}

#w-node-_08158cb2-9827-36e9-3acb-e702e656501a-febd7c78 {
  place-self: center start;
}

#w-node-_51300c2e-83e6-32e9-54fe-8f07fea8a841-febd7c7e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5b984663-470c-8ae8-a185-62a544ea4667-febd7c7e, #w-node-_7e11a556-8f96-0258-f74f-689feebb309e-febd7c7e, #w-node-_693ac295-cd6f-4163-fb05-03085a9a4496-febd7c7e, #w-node-_62f02d50-09e3-398e-7450-93fc8cf378ac-febd7c7e, #w-node-f4685100-18e5-f485-d85b-a68b9aada7ae-febd7c7e, #w-node-_01c5faad-2a41-b24c-f6eb-9f168c31dcab-febd7c7e, #w-node-_9cd6c61e-6704-40cd-15fe-6598545e59c1-febd7c7e, #w-node-_1c01eeca-5d9c-cce7-dbaf-54d429515dd3-febd7c7e, #w-node-_87468c32-83f5-729b-6140-32c34d9e6392-febd7c7e, #w-node-b69c3819-0367-9d70-1714-acf0303d75b4-febd7c7e, #w-node-_53b2e3c5-244e-4874-9a0d-9c601d87765f-febd7c7e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_51326531-ca92-3efa-16c3-99d39d80e906-febd7c7f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_51326531-ca92-3efa-16c3-99d39d80e907-febd7c7f {
  grid-area: 1 / 4 / 2 / 5;
  place-self: start end;
}

#w-node-e0615d2e-a411-cefa-e844-881db2a7ba29-febd7c7f {
  justify-self: end;
}

#w-node-_3a2380a9-6afc-1580-2948-ec463d1fef56-febd7c86 {
  align-self: end;
}

#w-node-_731b8412-6b12-b1e6-11e8-e86576ea7440-febd7c86 {
  justify-self: end;
}

#w-node-ae532fe5-5a58-2da2-7034-cb310e0b4e2c-febd7c86 {
  justify-self: start;
}

#w-node-ae532fe5-5a58-2da2-7034-cb310e0b4e2f-febd7c86 {
  justify-self: stretch;
}

#w-node-ce9e0dcb-8a23-d7c7-c79f-6fbd98e0268b-febd7c86 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5b9b665c-0466-d87a-d58a-835510687571-febd7c86 {
  justify-self: end;
}

#w-node-_79937d56-36c2-609f-15f8-19bbab1a7d6e-ab1a7d6a {
  justify-self: start;
}

#w-node-_79937d56-36c2-609f-15f8-19bbab1a7d71-ab1a7d6a {
  justify-self: stretch;
}

#w-node-_4972db32-5281-69aa-422c-c644bbd50e69-febd7c87 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_34d8456c-7e89-f184-ef1d-96d5b7a0eb0d-febd7c87 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-fddb184e-ac52-e3e9-1eca-eb3e41c952d7-febd7c87 {
  grid-area: 1 / 1 / 2 / 3;
  place-self: stretch stretch;
}

#w-node-_39551c7f-9aa8-c71d-8f8b-b3d841124742-febd7c87 {
  place-self: center end;
}

#w-node-_7c75f62d-777f-a9d5-0d21-cd7be1a7e848-febd7c87 {
  justify-self: end;
}

#w-node-_7893777a-d5a4-4753-91ee-b2234ac04599-febd7c87 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f346368d-fcb3-5664-a492-19598029228f-febd7c87 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-f81a8d6b-f107-9e04-e3e4-e957ad0f5d0e-febd7c87 {
  justify-self: center;
}

#w-node-f81a8d6b-f107-9e04-e3e4-e957ad0f5d11-febd7c87 {
  place-self: center start;
}

#w-node-a43de629-f0a7-f520-ad50-62607ab81f1b-febd7c87 {
  justify-self: center;
}

#w-node-a43de629-f0a7-f520-ad50-62607ab81f1e-febd7c87 {
  place-self: center start;
}

#w-node-c080471b-6211-9a0f-d8f1-2112929cb013-febd7c87 {
  justify-self: center;
}

#w-node-c080471b-6211-9a0f-d8f1-2112929cb016-febd7c87 {
  place-self: center start;
}

#w-node-_2ea8b77f-00a2-3060-5721-4cc8fd002396-febd7c87, #w-node-c20d57c1-b52d-f6f2-d565-71bf41681fcd-febd7c87 {
  justify-self: end;
}

#w-node-c4e9307d-218c-08d7-3dfb-12845ec562ee-febd7c88 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_68fe4532-a603-f69c-4eca-9e34369dae5f-febd7c88 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: start end;
}

#w-node-_5539de9f-2e45-4ab2-cbec-c14fc1546d1e-febd7c88 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_53d773b7-4921-4898-3f44-39b7f1f72f22-febd7c88 {
  grid-area: 1 / 2 / 2 / 4;
  place-self: stretch stretch;
}

#w-node-bcb8642d-3c73-7533-849c-c9c090676648-febd7c88 {
  justify-self: end;
}

#w-node-_53d773b7-4921-4898-3f44-39b7f1f72f23-febd7c88 {
  justify-self: center;
}

#w-node-becc09fd-f9d5-2c97-a457-846706de1b07-febd7c88, #w-node-_190f147d-e161-a633-849a-d9e7f2e0ddd1-febd7c88, #w-node-d627573e-9f7d-2a25-883c-fa3906e69fd7-febd7c88 {
  justify-self: start;
}

#w-node-fdb8ee17-2ec2-acf3-1c59-03dc59d3535b-febd7c88, #w-node-cea70f7d-2ed0-775d-65db-b33ce6e2da5b-febd7c88, #w-node-ab13104e-e342-482f-75f0-911b508f29dc-febd7c88 {
  place-self: end;
}

#w-node-_944a55c3-c4d0-e5ad-8857-6fb09cf6ddd4-febd7c88 {
  justify-self: start;
}

#w-node-_944a55c3-c4d0-e5ad-8857-6fb09cf6ddce-febd7c88 {
  justify-self: end;
}

#w-node-_944a55c3-c4d0-e5ad-8857-6fb09cf6ddea-febd7c88 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a45f-febd7c88 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a460-febd7c88 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a468-febd7c88 {
  justify-self: center;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a46b-febd7c88 {
  place-self: center start;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a474-febd7c88 {
  justify-self: center;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a477-febd7c88 {
  place-self: center start;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a480-febd7c88 {
  justify-self: center;
}

#w-node-ccacd53c-150b-8624-8922-a0ae0d38a483-febd7c88 {
  place-self: center start;
}

#w-node-_3de3d033-7631-902c-da94-35aab3421e9d-febd7c88 {
  justify-self: end;
}

#w-node-_815b657a-8a32-71de-0bd6-b15b8cc91166-febd7c89, #w-node-a8e127e5-c2ae-7196-0d5a-2f899739e7ea-febd7c89, #w-node-fb7822e1-f155-2c54-5376-b3f321350e87-febd7c89, #w-node-a081ad12-67bd-77a1-9054-fa5797e7a8b4-febd7c89, #w-node-c42ea6f0-6750-0d9c-3226-0ed7e23d6667-febd7c89, #w-node-dd3ac7dd-8de1-bbb0-01f4-6d468bfc92ca-febd7c89, #w-node-ec6bb08a-bf3e-de13-49fc-d0a13c71101c-febd7c89, #w-node-a6920795-1b6e-e163-e48e-0cda1cbd4316-febd7c89, #w-node-b3aa341c-d3b6-8b3e-09ad-538976d6becc-febd7c89, #w-node-a30eee17-1ff8-beea-04f0-7a7a5874f6d3-febd7c89, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-febd7c89, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-febd7c89, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-febd7c89, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-febd7c89, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-febd7c89, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-febd7c89, #w-node-c706860d-d724-fa4f-4e58-ef3866dde3c9-febd7c89, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-febd7c89, #w-node-_06d68103-5248-e1ef-dd60-824c0578c6c7-febd7c89, #w-node-_1cc6275e-15f4-477a-d6ef-f483c14b36a5-febd7c89, #w-node-_60e8d72f-669d-07b1-2f48-a2416ca7773a-febd7c89, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785bc-febd7c8a, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785d0-febd7c8a, #w-node-_2c9c6a06-707e-b1ff-a965-59cb79a785e4-febd7c8a, #w-node-e9f7722c-bd67-8ea3-db10-76e1caa66b5e-febd7c8a, #w-node-_613b3358-da81-00d3-3fa5-614a0e2d89e4-febd7c8a, #w-node-_899a79f8-8d78-0491-642d-8632dc1d553d-febd7c8a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c392ad07-da06-3884-28d0-18712198b83b-febd7ca4, #w-node-c392ad07-da06-3884-28d0-18712198b84e-febd7ca4, #w-node-c392ad07-da06-3884-28d0-18712198b864-febd7ca4, #w-node-_7ee13245-7b70-1a4e-1ea7-cdf7bd13ba61-febd7ca4, #w-node-_33553ae7-2ca6-4693-7d24-ef1b7b90b1a5-febd7ca4, #w-node-_56f0c8e9-9238-dee8-86c2-badc0e805759-febd7ca4 {
  place-self: end;
}

#w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3a9-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ab-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ad-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3af-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b1-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b4-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b6-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b8-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ba-febd7ca5, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3bc-febd7ca5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_87e6e6f7-89bf-4b68-a572-466ee859926a-febd7c76, #w-node-_90e075bf-9feb-8d84-27fe-a02a9b2b5690-febd7c78 {
    order: 9999;
  }

  #w-node-_08158cb2-9827-36e9-3acb-e702e6564ffd-febd7c78 {
    justify-self: center;
  }

  #w-node-_51326531-ca92-3efa-16c3-99d39d80e907-febd7c7f {
    grid-column: 3 / 4;
  }

  #w-node-_51326531-ca92-3efa-16c3-99d39d80e908-febd7c7f {
    order: 9999;
  }

  #w-node-_6acbd6e7-230b-2da7-36fd-470ddae0bf64-febd7c83 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_4972db32-5281-69aa-422c-c644bbd50e65-febd7c87 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-fddb184e-ac52-e3e9-1eca-eb3e41c952d7-febd7c87 {
    grid-column-end: 4;
  }

  #w-node-_39551c7f-9aa8-c71d-8f8b-b3d841124742-febd7c87 {
    order: 9999;
    justify-self: center;
  }

  #w-node-_01bf4fe2-3a76-94bf-290f-ed9e72400b7b-febd7c87 {
    order: 9999;
  }

  #w-node-f81a8d6b-f107-9e04-e3e4-e957ad0f5d0c-febd7c87 {
    justify-self: center;
  }

  #w-node-_68fe4532-a603-f69c-4eca-9e34369dae5f-febd7c88 {
    grid-column: 3 / 4;
  }

  #w-node-c4e9307d-218c-08d7-3dfb-12845ec562f3-febd7c88 {
    order: 9999;
  }

  #w-node-_53d773b7-4921-4898-3f44-39b7f1f72f22-febd7c88 {
    grid-column-start: 1;
  }

  #w-node-_04082d67-fd0b-d36a-4622-b96866e4b95d-febd7c88 {
    order: 9999;
  }

  #w-node-ccacd53c-150b-8624-8922-a0ae0d38a466-febd7c88 {
    justify-self: center;
  }

  #w-node-_201e60e3-f2d3-cac9-efb1-c58b4cb3ab10-febd7c8b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_87e6e6f7-89bf-4b68-a572-466ee859926a-50f89665 {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_86406282-760a-5767-b8c1-a5103684acbb-febd7c77 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86406282-760a-5767-b8c1-a5103684acce-febd7c77 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_86406282-760a-5767-b8c1-a5103684acd1-febd7c77 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_856337ff-f831-669b-26ac-4a71150e90e9-febd7c7a {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_856337ff-f831-669b-26ac-4a71150e90fc-febd7c7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_856337ff-f831-669b-26ac-4a71150e90ff-febd7c7a {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_2ea8b77f-00a2-3060-5721-4cc8fd0023a5-febd7c87 {
    order: 9999;
  }

  #w-node-_7fa17f90-138a-36c2-4e69-5eee11096f2e-febd7c88 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_7fa17f90-138a-36c2-4e69-5eee11096f41-febd7c88 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7fa17f90-138a-36c2-4e69-5eee11096f44-febd7c88 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_80270f24-4c81-7b05-39d7-8a6712c1cef2-12c1ceee {
    order: -9999;
  }

  #w-node-_86406282-760a-5767-b8c1-a5103684acbb-febd7c77, #w-node-_856337ff-f831-669b-26ac-4a71150e90e9-febd7c7a {
    grid-column-end: 3;
  }

  #w-node-_6acbd6e7-230b-2da7-36fd-470ddae0bf64-febd7c83 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_731b8412-6b12-b1e6-11e8-e86576ea7440-febd7c86 {
    justify-self: start;
  }

  #w-node-ae532fe5-5a58-2da2-7034-cb310e0b4e2c-febd7c86 {
    order: -9999;
  }

  #w-node-ce9e0dcb-8a23-d7c7-c79f-6fbd98e0268b-febd7c86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5b9b665c-0466-d87a-d58a-835510687571-febd7c86 {
    justify-self: start;
  }

  #w-node-_79937d56-36c2-609f-15f8-19bbab1a7d6e-ab1a7d6a, #w-node-d627573e-9f7d-2a25-883c-fa3906e69fd4-febd7c88 {
    order: -9999;
  }

  #w-node-cea70f7d-2ed0-775d-65db-b33ce6e2da53-febd7c88 {
    order: 9999;
  }

  #w-node-_944a55c3-c4d0-e5ad-8857-6fb09cf6ddea-febd7c88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7fa17f90-138a-36c2-4e69-5eee11096f2e-febd7c88 {
    grid-column-end: 3;
  }

  #w-node-_815b657a-8a32-71de-0bd6-b15b8cc91166-febd7c89, #w-node-a8e127e5-c2ae-7196-0d5a-2f899739e7ea-febd7c89, #w-node-fb7822e1-f155-2c54-5376-b3f321350e87-febd7c89, #w-node-a081ad12-67bd-77a1-9054-fa5797e7a8b4-febd7c89, #w-node-c42ea6f0-6750-0d9c-3226-0ed7e23d6667-febd7c89, #w-node-dd3ac7dd-8de1-bbb0-01f4-6d468bfc92ca-febd7c89, #w-node-ec6bb08a-bf3e-de13-49fc-d0a13c71101c-febd7c89, #w-node-a6920795-1b6e-e163-e48e-0cda1cbd4316-febd7c89, #w-node-b3aa341c-d3b6-8b3e-09ad-538976d6becc-febd7c89, #w-node-a30eee17-1ff8-beea-04f0-7a7a5874f6d3-febd7c89, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-febd7c89, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-febd7c89, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-febd7c89, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-febd7c89, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-febd7c89, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-febd7c89, #w-node-c706860d-d724-fa4f-4e58-ef3866dde3c9-febd7c89, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-febd7c89, #w-node-_06d68103-5248-e1ef-dd60-824c0578c6c7-febd7c89, #w-node-_1cc6275e-15f4-477a-d6ef-f483c14b36a5-febd7c89, #w-node-_2d0625cd-8841-0cc0-4361-24097666c652-febd7c89, #w-node-_60e8d72f-669d-07b1-2f48-a2416ca7773a-febd7c89 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_201e60e3-f2d3-cac9-efb1-c58b4cb3ab10-febd7c8b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c392ad07-da06-3884-28d0-18712198b846-febd7ca4, #w-node-_7ee13245-7b70-1a4e-1ea7-cdf7bd13ba59-febd7ca4, #w-node-_56f0c8e9-9238-dee8-86c2-badc0e805751-febd7ca4 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Fa brands 400 (old)';
  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;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}