:root {
  --body: #333;
  --title: black;
  --bg: white;
  --desktop-space: 150px;
  --tablet-space: 100px;
  --landscape-mobile-space: 100px;
  --portrait-mobile-space: 60px;
}

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

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

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

body {
  color: var(--body);
  background-color: #f5f5f5;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

h1 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 400;
  line-height: 150%;
}

h2 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 400;
  line-height: 150%;
}

h3 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 150%;
}

h4 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

h5 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

a {
  color: var(--body);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
}

li {
  margin-bottom: 15px;
}

blockquote {
  background-color: var(--bg);
  text-align: center;
  border-left: 0 solid #000;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 40px;
  font-size: 18px;
  line-height: 170%;
}

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

.navbar {
  background-color: #fff;
  height: 100%;
  padding: 60px 40px 50px;
}

.nav-wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.nav-menu {
  flex-flow: column;
  display: flex;
}

.sidebar {
  z-index: 999;
  min-width: 286px;
  max-width: 286px;
  height: 100vh;
  position: sticky;
  top: 0;
}

.nav-link {
  grid-column-gap: 10px;
  color: #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.nav-link.articles,
.nav-link.licensing,
.nav-link.reviews {
  display: none;
}

.nav-link.footer-nav.w--current {
  font-family: Poppins, sans-serif;
  font-size: 18px;
}

.nav-link.light {
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.nav-icon {
  min-width: 20px;
  max-width: 30px;
  min-height: 20px;
  max-height: 30px;
}

.nav-head {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 22px;
  font-size: 12px;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

.nav-img {
  background-color: #f5f5f5;
  border-radius: 0%;
  min-width: 50px;
  max-width: 70px;
  min-height: 50px;
  max-height: 45px;
  overflow: hidden;
}

.nav-image {
  object-fit: cover;
  background-color: #fff;
  width: 100%;
  min-height: 50px;
}

.profile-name {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.nav-dropdown {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
  position: static;
}

.link-text {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.dropdown-list {
  background-color: #0000;
  padding-top: 10px;
  padding-left: 30px;
  display: block;
  position: relative;
  overflow: hidden;
}

.resource-link {
  grid-column-gap: 10px;
  color: #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: none;
}

.dropdown-link {
  color: #000;
  padding-left: 0;
  padding-right: 0;
}

.dropdown-link.w--current {
  color: #000;
}

.nav-data {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.nav-text {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 150%;
}

.nav-text.copyright {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #333;
  text-align: left;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  position: static;
}

.page-wrap {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.container {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 32px;
  padding-right: 32px;
}

.humburg-menu {
  margin-left: 10px;
}

.top-line {
  background-color: #000;
  width: 24px;
  height: 1px;
  margin-bottom: 6px;
}

.middle-line {
  background-color: #000;
  width: 24px;
  height: 1px;
}

.bottom-line {
  background-color: #000;
  width: 24px;
  height: 1px;
  margin-top: 6px;
}

.page-title {
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-title {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.page-data {
  width: 100%;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.button-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-wrap.center {
  justify-content: center;
  align-items: center;
}

.primary-btn {
  grid-column-gap: 20px;
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border-width: 0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 8px 8px 15px;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 5px -2px #0003;
}

.arrrow-icon {
  background-color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hover-arrow {
  position: absolute;
}

.plain-btn {
  grid-column-gap: 20px;
  color: #000;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 45px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: flex;
}

.plain-btn:hover {
  color: #fff;
  background-color: #000;
}

.error-data {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.error-text {
  margin-top: 50px;
  font-size: 14px;
  line-height: 150%;
}

.cs-wrap {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.cs-inside {
  text-align: center;
  width: 100%;
  max-width: 480px;
}

.cs-title {
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 120%;
}

.cs-text {
  margin-bottom: 50px;
  font-family: Poppins, sans-serif;
}

.cs-text-title {
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
}

.plain-link {
  font-family: Poppins, sans-serif;
  text-decoration: none;
  overflow: visible;
}

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

.plain-link.email {
  font-size: 14px;
}

.single-text {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.sub-title {
  grid-column-gap: 4px;
  color: #000;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.contact-wrap {
  grid-column-gap: 60px;
  display: flex;
}

.contact-data {
  background-color: #fff;
  border: 1px solid #0000001a;
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px;
  display: flex;
}

.contact-block {
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.contact-info {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.contact-info:last-child {
  margin-bottom: 0;
}

.contact-text {
  color: var(--title);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 170%;
}

.contact-social {
  grid-column-gap: 10px;
  display: flex;
}

.social-icon {
  border: 1px solid #0003;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 25px;
  max-width: 25px;
  min-height: 25px;
  max-height: 25px;
  transition: background-color .3s;
  display: flex;
}

.social-icon:hover {
  background-color: #f3f3f3;
}

.contact-right {
  width: 100%;
  max-width: 65%;
}

.success-message {
  color: #fff;
  text-align: center;
  background-color: #000;
}

.field-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.textarea {
  color: #333;
  background-color: #0000;
  background-image: url('../images/ic-message.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  border: 0 solid #000;
  border-bottom-width: 1px;
  border-radius: 0;
  height: auto;
  min-height: 120px;
  margin-bottom: 0;
  padding: 0 0 12px 28px;
  font-family: Poppins, sans-serif;
}

.textarea:focus {
  border-bottom-color: #000;
}

.textarea::placeholder {
  color: #333;
  font-size: 14px;
  line-height: 150%;
}

.error-message {
  text-align: center;
  padding: 20px;
}

.input {
  color: #333;
  background-color: #0000;
  background-image: url('../images/ic-name.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  border: 0 solid #000;
  border-bottom-width: 1px;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding: 0 0 10px 28px;
  font-family: Poppins, sans-serif;
}

.input:focus {
  border-bottom-color: #000;
}

.input::placeholder {
  color: #333;
  font-size: 14px;
  line-height: 150%;
}

.input.phone {
  background-image: url('../images/ic-phone.svg');
  font-family: Poppins, sans-serif;
}

.input.email {
  background-image: url('../images/ic-mail.svg');
  font-family: Poppins, sans-serif;
}

.contact-form {
  margin-top: 40px;
  margin-bottom: 0;
}

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

.contact-title {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.address {
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 300;
  display: inline-flex;
}

.profile {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.client-name {
  color: #000;
  font-family: Poppins, sans-serif;
}

.empty-state {
  color: #fff;
  text-align: center;
  background-color: #000;
}

.exp-wrap {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.exp-block {
  grid-column-gap: 130px;
  border-bottom: 1px solid #0000001a;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  display: flex;
}

.exp-year-wrap {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 14%;
  display: flex;
}

.divider {
  background-color: #000;
  width: 10px;
  height: 1px;
}

.exp-year {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.exp-info {
  margin-bottom: 15px;
}

.exp-role {
  color: #000;
  font-family: Poppins, sans-serif;
}

.exp-text {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.about {
  margin-bottom: var(--desktop-space);
}

.about-wrap {
  grid-column-gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-img {
  background-color: var(--bg);
  width: 100%;
  max-width: 40%;
}

.about-image {
  object-fit: cover;
  border-radius: 3px;
  width: 100%;
  min-height: 500px;
  position: static;
}

.about-data {
  grid-row-gap: 5em;
  flex-flow: column;
  width: 100%;
  max-width: 60%;
  display: flex;
}

.facts {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fact-text {
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 100%;
}

.work-process {
  margin-bottom: var(--desktop-space);
}

.section-title {
  margin-bottom: 20px;
}

.title {
  color: var(--body);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.wp-wrap {
  grid-column-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wp-block {
  grid-row-gap: 30px;
  background-color: var(--bg);
  border: 1px solid #0000001a;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.wp-title {
  border-bottom: 1px solid #0000001a;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
}

.services {
  margin-bottom: 4em;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
}

.services-wrap {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  vertical-align: baseline;
  flex-flow: wrap;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch flex-start;
  place-items: flex-start center;
  display: flex;
  position: static;
}

.service-info {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-block {
  border: 1px solid #0000001a;
  border-bottom-width: 0;
  width: 100%;
  padding: 30px 30px 15px;
  font-size: 24px;
  display: block;
}

.service-text {
  width: 100%;
  max-width: 70%;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.service-box {
  grid-column-gap: 60px;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.service-head {
  grid-column-gap: 24px;
  white-space: normal;
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 15px;
  display: flex;
  position: static;
}

.service-title {
  margin-bottom: 0;
  padding-left: 5px;
  font-family: Poppins, sans-serif;
  font-size: 26px;
}

.service-arrow {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-icon {
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
}

.hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero.container {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.hero-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero-text {
  color: var(--body);
  width: 100%;
  max-width: 80%;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

.work-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.work-item {
  border-radius: 25px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.work-link {
  width: 100%;
}

.work-img {
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  max-height: 420px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 420px;
  position: relative;
}

.work-hover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 420px;
  display: block;
  position: absolute;
  inset: 0%;
}

.status-dot {
  display: block;
}

.availability-indicator {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.status-text {
  font-family: Poppins, sans-serif;
}

.script_rotate_text_wrap.h1 {
  mix-blend-mode: normal;
  max-width: 80%;
  font-family: Poppins, sans-serif;
  font-size: 48px;
}

.script_rotate_text_list {
  justify-content: center;
  align-items: center;
  margin-right: .125em;
  padding-left: .125em;
  font-size: 54px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.script_rotate_text_item {
  opacity: 0;
  font-weight: 600;
  transition: transform .2s ease-out, opacity .2s ease-out;
  position: absolute;
  transform: translate(100%);
}

.script_rotate_text_item.is-active {
  opacity: 1;
  font-weight: 700;
  transform: translate(0%);
}

.span_end {
  font-weight: 300;
}

.span_start,
.span_end {
  font-weight: 400;
}

.heading-3-poppins {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.subtitle_nav {
  font-family: Poppins, sans-serif;
}

.poppins-text {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.image {
  display: inline-flex;
}

.div-block {
  flex: 0 auto;
  display: inline-flex;
}

.heading-3 {
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.tabs {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #f5f5f5;
  text-align: center;
  text-transform: uppercase;
  background-color: #333;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: .5em;
  padding-bottom: .5em;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.tabs.w--current {
  color: #f5f5f5;
  -webkit-text-fill-color: inherit;
  background-color: #333;
  background-clip: border-box;
  font-family: Poppins, sans-serif;
}

.services-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  mix-blend-mode: normal;
  background-color: #fff;
  border-radius: 10px;
  flex-flow: column;
  flex: 2 2 45%;
  order: 0;
  align-self: flex-start;
  min-height: 25em;
  margin-bottom: auto;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.lists {
  padding-left: 3em;
  padding-right: 3em;
  list-style-type: none;
}

.footer {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  display: flex;
  position: static;
}

.footer-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-top: 1px solid #f7f7fc;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.footer-logo {
  transform-style: preserve-3d;
  transition: transform .3s;
  display: inline-block;
}

.footer-logo:hover {
  transform: scale3d(.92, .92, 1.01);
}

.footer-logo.topmargin {
  margin-top: 20px;
}

.footer-logo-wrapper {
  margin-bottom: 24px;
}

.footer-logo-wrapper.mg-bottom-0 {
  margin-bottom: 0;
}

.social-media-grid-top {
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 36px);
  justify-content: start;
  justify-items: start;
}

.social-media-grid-top.right {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: end;
  justify-items: end;
}

.social-media-grid-top.right.center-tablet {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  place-items: center start;
  display: flex;
}

.footer-contact-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.footer-contact-block.topmargin {
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.link {
  text-align: left;
}

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

  h2 {
    font-size: 32px;
  }

  blockquote {
    padding: 30px;
  }

  .navbar {
    z-index: 99999;
    height: auto;
    padding: 12px 20px;
  }

  .nav-wrap {
    flex-flow: row;
  }

  .nav-menu {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
  }

  .nav-head {
    padding-bottom: 0;
  }

  .nav-img {
    min-width: 40px;
    max-width: 50px;
    min-height: 40px;
    max-height: 50px;
  }

  .nav-image {
    min-height: 40px;
    max-height: 60px;
  }

  .nav-data {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-text {
    display: none;
  }

  .page-wrap {
    flex-flow: column;
  }

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

  .humburg-menu {
    grid-row-gap: 4px;
    margin-left: 0;
    padding: 0;
  }

  .top-line,
  .middle-line,
  .bottom-line {
    width: 26px;
  }

  .page-title {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-flow: column-reverse wrap;
  }

  .contact-data {
    grid-row-gap: 40px;
    max-width: 100%;
  }

  .contact-right {
    max-width: 100%;
  }

  .exp-block {
    grid-column-gap: 60px;
  }

  .exp-year-wrap {
    max-width: 20%;
  }

  .about {
    margin-bottom: var(--tablet-space);
  }

  .about-wrap {
    grid-column-gap: 30px;
    justify-content: flex-start;
    align-items: stretch;
  }

  .about-img {
    max-width: 42%;
  }

  .about-image {
    height: 100%;
    min-height: auto;
    max-height: none;
  }

  .about-data {
    grid-row-gap: 60px;
    max-width: 58%;
  }

  .facts {
    grid-column-gap: 30px;
    font-size: 14px;
    line-height: 150%;
  }

  .fact-text {
    font-size: 30px;
  }

  .work-process {
    margin-bottom: var(--tablet-space);
  }

  .wp-wrap {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .service-title {
    font-size: 24px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .work-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .work-image,
  .work-hover-image {
    min-height: 258px;
    max-height: 258px;
  }

  .script_rotate_text_wrap.h1 {
    font-size: 4rem;
  }

  .script_rotate_text_list {
    font-size: 6rem;
  }

  .script_rotate_text_item.is-active {
    font-size: 5rem;
  }

  .social-media-grid-top.right {
    grid-column-gap: 10px;
  }

  .social-media-grid-top.right.center-tablet {
    justify-content: center;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  ul,
  ol {
    padding-left: 25px;
  }

  blockquote {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 25px;
    font-size: 16px;
  }

  .navbar {
    max-width: 100%;
  }

  .humburg-menu {
    position: relative;
  }

  .page-title {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .error-data {
    max-width: 90%;
  }

  .cs-title {
    font-size: 56px;
  }

  .field-wrap {
    grid-row-gap: 50px;
  }

  .exp-block {
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .exp-year-wrap {
    max-width: none;
  }

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

  .exp-text {
    font-size: 14px;
    line-height: 150%;
  }

  .about {
    margin-bottom: var(--landscape-mobile-space);
  }

  .about-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .about-img,
  .about-data {
    max-width: 100%;
  }

  .work-process {
    margin-bottom: var(--landscape-mobile-space);
  }

  .wp-wrap {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .service-block {
    padding: 20px 20px 5px;
  }

  .service-text {
    font-size: 14px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-icon {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-wrap {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .work-list {
    grid-template-columns: 1fr 1fr;
  }

  .work-image,
  .work-hover-image {
    min-height: 282px;
    max-height: 282px;
  }

  .footer-logo {
    width: 100%;
    max-width: 240px;
  }

  .social-media-grid-top {
    grid-template-columns: repeat(auto-fit, 30px);
  }
}

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  blockquote {
    padding: 20px;
  }

  .cs-title {
    margin-bottom: 10px;
    font-size: 42px;
  }

  .contact-data {
    padding: 25px;
  }

  .contact-info {
    font-family: Poppins, sans-serif;
  }

  .contact-social {
    justify-content: center;
    align-items: center;
  }

  .field-wrap {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .form-btn {
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .address {
    font-size: 14px;
    line-height: 150%;
  }

  .about {
    margin-bottom: var(--portrait-mobile-space);
  }

  .about-wrap {
    grid-row-gap: 25px;
  }

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

  .fact-text {
    font-size: 24px;
  }

  .work-process {
    margin-bottom: var(--portrait-mobile-space);
  }

  .service-block {
    padding: 15px 20px 0;
  }

  .service-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 150%;
  }

  .service-box {
    grid-column-gap: 0px;
    grid-row-gap: 22px;
    flex-flow: column-reverse wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 15px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-icon {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-wrap {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .work-list {
    grid-template-columns: 1fr 1fr;
  }

  .work-image,
  .work-hover-image {
    min-height: 282px;
    max-height: 282px;
  }

  .footer-logo {
    width: 100%;
    max-width: 240px;
  }

  .social-media-grid-top {
    grid-template-columns: repeat(auto-fit, 30px);
  }
}

#w-node-_54c5325a-bf69-313d-9157-e5382268b41a-a2e76305 {
  justify-self: center;
}

#w-node-_60c675b7-c021-8b62-08b1-69d47107866f-a2e76352,
#w-node-_60c675b7-c021-8b62-08b1-69d471078674-a2e76352,
#w-node-f7a6d5dd-4e0f-2f66-5d64-a9aafdd9a02b-a2e76352,
#w-node-f7a6d5dd-4e0f-2f66-5d64-a9aafdd9a02d-a2e76352,
#w-node-f7a6d5dd-4e0f-2f66-5d64-a9aafdd9a030-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b831e-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8323-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8326-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b832a-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b832f-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8332-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8336-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b833b-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b833e-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8342-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8347-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b834a-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b834e-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8353-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8356-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b835a-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b835f-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8362-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8366-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b836b-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b836e-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8372-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8377-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b837a-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b837e-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8383-a2e76352,
#w-node-cf7bda70-1832-2d2a-21bd-a026131b8386-a2e76352,
#w-node-_8f52d1df-c4c1-41d2-22b2-1e31e04e5f36-a2e76355,
#w-node-_8f52d1df-c4c1-41d2-22b2-1e31e04e5f3f-a2e76355 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#name.w-node-eec847c0-4430-4e05-0881-3f0360a2dc9f-a2e76357,
#message.w-node-eec847c0-4430-4e05-0881-3f0360a2dca2-a2e76357 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_54c5325a-bf69-313d-9157-e5382268b41a-a2e76305 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_54c5325a-bf69-313d-9157-e5382268b41c-a2e76305 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_54c5325a-bf69-313d-9157-e5382268b41a-a2e76305 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {

  #name.w-node-eec847c0-4430-4e05-0881-3f0360a2dc9f-a2e76357,
  #message.w-node-eec847c0-4430-4e05-0881-3f0360a2dca2-a2e76357 {
    grid-column: span 1 / span 1;
  }
}

.featured-project {
  margin-bottom: 4em;
  padding: 2rem;
  background-color: var(--bg);
  border: 1px solid #0000001a;
  border-radius: 12px;
  font-family: Poppins, sans-serif;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}


.store-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
}

.store-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #333;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .store-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 479px) {
  .store-links {
    grid-template-columns: 1fr;
  }
}

.store-button:hover {
  background-color: #000;
}

.store-button img {
  width: 20px;
  height: 20px;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.link-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-radius: 8px;
  color: var(--body);
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.link-button.full-width {
  width: 100%;
  justify-content: center;
margin-bottom: 1rem;
}

.link-button:hover {
  background-color: #e5e5e5;
}

.link-button img {
  width: 20px;
  height: 20px;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.screenshot-gallery img {
  width: 100%;
border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 9/16;
}

@media screen and (max-width: 479px) {
  .project-content {
    grid-template-columns: 1fr;
  }

  .project-links {
  justify-content: center;
  }

  .screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .featured-project {
    padding: 1rem;
  }
}

.store-button i,
.link-button i {
  font-size: 20px;
  line-height: 1;
}

.store-button:hover i,
.link-button:hover i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.github-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #333;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.link-button:hover {
  background-color: #e5e5e5;
}

.github-button:hover {
  background-color: #000;
}

.github-button i {
  font-size: 20px;
  line-height: 1;
}

.github-button:hover i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.rotating-gallery {
  position: relative;
  width: 100%;
margin: 20px 0;
}

.gallery-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.gallery-container a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-image.active {
  opacity: 1;
}

.feature-graphic {
  width: 100%;
  border-radius: 8px;
  /* match your screenshot border-radius */
  margin-bottom: 20px;
  display: block;
}

/* If you need a container shadow or border like the screenshots */
.feature-graphic {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.other-projects {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e5e5e5;
}

.github-section {
  margin-top: 30px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.github-section h3 {
  margin-bottom: 16px;
}

.github-section p {
  margin-bottom: 24px;
}

button:disabled {
  opacity: 0.5; /* Make the button appear faded */
  cursor: not-allowed; /* Change the cursor to indicate the button is disabled */
}

.faq-category {
  margin-bottom: 20px;
}

.faq-category-title {
  cursor: pointer;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 10px;
}

.faq-category-title::after {
  content: '+';
  float: right;
}

.faq-category-title.active::after {
  content: '-';
}

.faq-category-content {
  display: none;
  padding: 0 10px;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 8px;
}

.faq-answer {
  line-height: 1.6;
}

.faq-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.support-options {
  padding: 40px 0;
}

.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
flex: 1;
  max-width: 300px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.contact-card .plain-link {
  font-weight: 600;
  margin-bottom: 8px;
}

.support-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.faq-section {
  padding: 40px 0;
  background-color: #f5f5f5;
}

.section-title {
  text-align: left;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .contact-card {
    width: 100%;
    max-width: 100%;
  }
}

.clients {
  padding: 60px 0;
  background-color: #f5f5f5; /* Solid color instead of rgba */
  border-top: 1px solid rgba(51, 51, 51, 0.08);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.clients-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  justify-content: start; /* Center the single card */
}

.client-card {
  flex: 0 1 400px; /* Fixed width instead of flexible */
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.client-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  }

.client-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.client-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.client-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

/* Add responsive behavior */
@media screen and (max-width: 991px) {
  .clients-wrap {
    flex-wrap: wrap;
  }
  
  .client-card {
    flex: 0 1 400px; /* Maintain fixed width */
  }
}

@media screen and (max-width: 767px) {
  .client-card {
    flex: 1 1 100%;
    min-width: unset;
  }
}

/* Rest of the CSS file remains exactly the same */
