@import url("/assets/css/style.css");
@import url("/assets/css/ad-style.css");

:root {
  --color-primary: #002355;
  --color-secondary: #98abc4;
  --color-background-100: #f2f9fb;
  --color-background-200: #ffffff;
  --color-content-primary: #111111;
  --color-content-secondary: rgba(17, 17, 17, 0.72);
  --color-border: rgba(17, 17, 17, 0.14);
  --color-text: #111111;
  --section-shell-bg: var(--color-background-100);
  --section-home-projects-bg: var(--color-background-200);
  --section-home-logos-bg: var(--color-background-200);
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-2xl: 48px;
  --font-size-hero: clamp(56px, 7vw, 112px);
  --line-height-tight: 1.2;
  --line-height-copy: 1.8;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --radius-sm: 12px;
  --site-footer-logo-max: 136px;
  --site-header-offset: 168px;
  --primary: var(--color-content-primary);
  --secondary: var(--color-content-secondary);
  --border: var(--color-border);
  --bg: var(--color-background-100);
  --theme: var(--color-primary);
  --action: var(--color-primary);
  --black: var(--color-content-primary);
  --black-2: var(--color-content-secondary);
  --white: #ffffff;
  --white-2: var(--color-secondary);
  --big-text-color: var(--color-content-primary);
  --rr-color-theme-primary: var(--color-primary);
  --rr-color-theme-secondary: var(--color-secondary);
}

html,
body,
body.body-wrapper {
  background: var(--color-background-100);
  color: var(--color-text);
}

body a {
  color: inherit;
}

.container-preloader .animation-preloader .spinner {
  border-color: #001631;
  border-top-color: var(--color-primary);
}

.site-header,
.footer-area {
  color: var(--color-content-primary);
}

.footer-area {
  border-top: 1px solid var(--color-border);
}

.site-header {
  background: var(--section-shell-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  z-index: 200;
  isolation: isolate;
}

.site-header__bottom {
  display: grid;
  align-items: center;
  column-gap: var(--space-6);
}

.site-header__bottom {
  grid-template-columns: 180px 1fr max-content;
  min-height: 100px;
}

.site-header__bottom > * {
  min-width: 0;
}

.site-header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header__logo img {
  display: block;
  width: 120px;
  max-width: 120px;
  height: auto;
}

.site-header__cta,
.site-header__nav a,
.site-header__toggle {
  color: var(--color-content-primary);
}

.site-header__toggle {
  justify-self: end;
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-header__nav ul {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav a,
.site-header__cta {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-tight);
  text-decoration: none;
}

.side-info {
  width: min(440px, 100vw);
  padding: 32px;
  border-left: 1px solid var(--color-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
}

.side-info-content {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.offset-logo {
  width: auto;
}

.offset-logo img {
  display: block;
  width: min(180px, 48vw);
  max-width: 180px;
  height: auto;
}

.side-info-close {
  width: 56px;
  height: 56px;
  min-width: 56px;
}

.mobile-menu {
  margin-top: 0;
  flex: 1 1 auto;
  overflow-y: auto;
}

.offset-button {
  margin-top: auto;
  padding-top: 8px;
}

.offcanvas-overlay {
  background: rgba(12, 18, 28, 0.42);
  backdrop-filter: blur(3px);
}

#smooth-wrapper,
#smooth-content,
main {
  position: relative;
  z-index: 1;
}

#smooth-content {
  padding-top: var(--site-header-offset);
  position: relative;
}

main > .hero-area:first-child .hero-area-inner {
  padding-top: 0;
}

main > .hero-area:first-child .hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: var(--space-10) 100px;
  margin-top: 24px;
}

main > .hero-area:first-child .section-title {
  line-height: 1;
}

main > .hero-area:first-child .award-wrapper {
  display: none;
}

main > .hero-area:first-child .section-header {
  grid-column: 1;
}

main > .hero-area:first-child .section-content {
  grid-column: 2;
}

main > .hero-area:first-child .section-header .hero-divider {
  margin-top: 36px;
  border-bottom: 1px solid var(--border);
}

main > .hero-area:first-child .section-header .text-wrapper {
  margin-top: 36px;
}

main > .hero-area:first-child .features-wrapper-box {
  border-bottom: 0;
  padding-bottom: 0;
}

main > .hero-area:first-child .big-text-wrapper {
  position: relative;
  z-index: 3;
}

main > .hero-area:first-child .big-text {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary);
  font-size: 460px;
  white-space: nowrap;
}

@media only screen and (max-width: 1919px) {
  main > .hero-area:first-child .big-text {
    font-size: 345px;
  }
}

@media only screen and (max-width: 1399px) {
  main > .hero-area:first-child .big-text {
    font-size: 295px;
  }
}

main > .hero-area:first-child .big-text-wrapper {
  pointer-events: none;
}

.about-area__window-title {
  font-family: var(--font_thunder) !important;
  font-size: clamp(92px, 7vw, 150px);
  font-weight: 700;
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  line-height: 0.82;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  .about-area__window-title {
    font-size: clamp(80px, 5.1vw, 110px);
    line-height: 0.82;
  }
}

.about-area--with-gallery {
  background-color: var(--color-secondary);
  position: relative;
  z-index: 1;
}

.about-area--with-gallery .about-area-inner {
  height: auto;
  min-height: 0;
  align-items: stretch;
}

.about-area--with-gallery .section-content {
  height: auto;
  justify-content: flex-start;
  gap: 24px;
  padding: 72px 0 56px;
}

.about-area--with-gallery .text-wrapper {
  margin-bottom: 0;
}

.about-area--with-gallery .section-title-wrapper,
.about-area--with-gallery .about-area__window-title,
.about-area--with-gallery .text-wrapper,
.about-area--with-gallery .text-wrapper .text,
.about-area--with-gallery .works-wrapper-box {
  margin-top: 0;
  margin-bottom: 0;
}

.about-area--with-gallery .section-title-wrapper {
  display: block;
  position: relative;
  z-index: 4;
}

.about-area--with-gallery .about-area__window-title {
  opacity: 0 !important;
  visibility: hidden;
  transform: none !important;
  will-change: auto;
}

.about-area--with-gallery .works-wrapper-box {
  width: 100%;
  margin-top: 0;
  margin-bottom: 48px;
}

.about-area--with-gallery .works-wrapper-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.about-area--with-gallery .works-wrapper-8 .work-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-area--with-gallery .works-wrapper-8 .work-box .thumb,
.about-area--with-gallery .works-wrapper-8 .work-box .thumb .image,
.projects-page-custom .works-wrapper-8 .work-box .thumb,
.projects-page-custom .works-wrapper-8 .work-box .thumb .image {
  height: 280px;
}

.about-area--with-gallery .works-wrapper-8 .work-box .thumb .image,
.projects-page-custom .works-wrapper-8 .work-box .thumb .image {
  transform: none;
}

.about-area--with-gallery .works-wrapper-8 .work-box .thumb img,
.projects-page-custom .works-wrapper-8 .work-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-area--with-gallery .works-wrapper-8 .work-box .content {
  text-align: left;
}

.about-area--with-gallery .works-wrapper-8 .work-box .title {
  font-size: 24px;
}

.about-area--with-gallery .works-wrapper-8 .work-box .meta {
  justify-content: flex-start;
}

.about-area--with-gallery .works-wrapper-8 .work-box .thumb .t-btn,
.projects-page-custom .works-wrapper-8 .work-box .thumb .t-btn {
  display: none;
  background-color: var(--color-primary);
  color: var(--white);
}

.cb-cursor.-gallery-projects.-text:before {
  background: var(--color-secondary);
}

.cb-cursor.-gallery-projects.-text .cb-cursor-text {
  color: var(--color-primary);
}

.about-area--with-gallery .rr-btn {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

.about-area--with-gallery .rr-btn .btn-wrap .text-one,
.about-area--with-gallery .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.about-area--with-gallery .rr-btn.hover-bg-theme::before {
  background-color: var(--color-secondary);
}

.about-area--with-gallery .rr-btn.hover-bg-theme:hover .btn-wrap .text-two,
.about-area--with-gallery .rr-btn.hover-bg-theme:focus .btn-wrap .text-two {
  color: var(--color-primary);
}

.about-area--with-gallery .text-wrapper,
.about-area--with-gallery .btn-wrapper {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.about-area--with-gallery .btn-wrapper {
  margin-top: 0;
}

.hero-badge {
  color: var(--color-primary);
  display: inline-flex;
  width: clamp(92px, 6vw, 124px);
  margin-left: 10px;
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-0.06em);
  opacity: 0;
  animation: heroBadgeEnter 1.15s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards;
}

.hero-badge__svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes heroBadgeEnter {
  from {
    opacity: 0;
    transform: translate3d(42px, -0.06em, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(-0.06em) scale(1);
  }
}

.hero-area .feature-box .number {
  color: var(--color-primary);
}

.progress-wrap {
  right: 32px !important;
  bottom: 32px !important;
}

.site-header__nav a:hover,
.site-header__cta:hover,
.site-header__toggle button:hover {
  color: var(--color-primary);
}

.site-header__cta {
  justify-self: end;
  position: relative;
}

.site-header__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.hero-area,
.page-title-area,
.site-header,
.footer-area {
  background: var(--section-shell-bg);
}

.body-digital-agency .about-area,
.body-digital-agency .client-area-3 {
  background: var(--section-home-projects-bg);
}

.body-digital-agency .materials-section {
  background: var(--section-shell-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.body-digital-agency .client-area-3 {
  background: var(--color-secondary);
}

.body-digital-agency .client-area-3 .section-header .text {
  color: var(--color-primary);
}

.body-digital-agency .client-area-3 .client-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
  padding: 24px 32px;
  overflow: hidden;
}

.body-digital-agency .client-area-3 .client-box img {
  opacity: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: url(#logo-shade);
}

.materials-section__inner {
  display: grid;
  gap: 48px;
}

.materials-section .section-header {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.materials-section .section-title {
  max-width: none;
  color: var(--color-primary);
}

.materials-section .text-wrapper,
.materials-section .text {
  margin: 0;
}

.materials-section .text {
  color: var(--color-content-secondary);
  max-width: none;
}

.materials-section__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.materials-section__card {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
}

.materials-section__brand {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.materials-section__logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--color-heading-primary);
}

.materials-section__brand-name {
  display: inline-block;
  font-family: var(--font_sequelsans_romanbody);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.materials-section__brand--assa-abloy .materials-section__brand-name {
  letter-spacing: -0.06em;
}

.materials-section__asaspen-logo {
  display: inline-block;
  width: auto;
  height: 64px;
  max-width: 180px;
  object-fit: contain;
}

.materials-section__type {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-content-secondary);
}

.materials-section__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-content-secondary);
}

.copyright-area {
  border-top: 1px solid var(--color-border);
}

.footer-area .footer-logo,
.footer-area .footer-widget-box .title,
.footer-area .info-link a,
.footer-area .footer-nav-list a,
.footer-area .copyright-text {
  color: var(--color-content-primary);
}

.footer-area .text,
.footer-area .subscription-text .text {
  color: var(--color-content-secondary);
}

.footer-area .footer-nav-list a:hover,
.footer-area .info-link a:hover,
.footer-area .subscription-text a:hover {
  color: var(--color-primary);
}

.footer-area .footer-logo img {
  max-width: var(--site-footer-logo-max);
}

.footer-area .footer-top-inner {
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
}

.footer-area .footer-top-inner > * {
  min-width: 0;
}

.footer-area .footer-top-inner .info-text {
  justify-self: end;
  text-align: right;
}

.footer-area .footer-top-inner .info-text .text {
  margin-left: auto;
}

.footer-area .info-link a,
.footer-area .footer-nav-list a,
.footer-area .copyright-text .text {
  overflow-wrap: anywhere;
}

.footer-area .footer-widget-wrapper-box::before {
  display: none;
}

.footer-area .footer-widget-wrapper {
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 30px 110px;
}

.footer-area .footer-widget-box:nth-child(2),
.footer-area .footer-widget-box:nth-child(3) {
  border-left: 1px solid var(--color-border);
  padding-left: 36px;
}

.legal-page__content {
  margin-top: 50px;
  max-width: 800px;
}

.legal-page__body {
  color: var(--color-content-secondary);
  font-size: var(--font-size-md);
  line-height: var(--line-height-copy);
}

.legal-page__updated {
  margin-bottom: var(--space-8);
}

.legal-page__heading {
  color: var(--color-content-primary);
  font-size: var(--font-size-lg);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
}

.legal-page__paragraph {
  margin-bottom: var(--space-5);
}

.about-page-custom .page-title-area,
.about-page-custom .about-area-details {
  background: var(--section-shell-bg);
}

.services-page-custom .page-title-area,
.services-page-custom .service-area-service-page {
  background: var(--section-shell-bg);
}

.projects-page-custom .page-title-area,
.projects-page-custom .work-area-work-page {
  background: var(--section-shell-bg);
}

.contact-page-custom .page-title-area,
.contact-page-custom .contact-area-contact-page {
  background: var(--section-shell-bg);
}

.body-page-inner .page-title-area-inner.section-spacing-top {
  padding-top: 0;
}

.about-page-custom .page-title {
  color: var(--color-primary);
}

.services-page-custom .page-title {
  color: var(--color-primary);
}

.projects-page-custom .page-title {
  color: var(--color-primary);
}

.contact-page-custom .page-title {
  color: var(--color-primary);
}

.about-page-custom .about-area-details .section-title,
.about-page-custom .approach-area-about-page .section-title,
.about-page-custom .info-area-page-about .section-title,
.about-page-custom .approach-area-about-page .approach-box .title {
  color: var(--color-primary);
}

.services-page-custom .service-area-service-page .section-title,
.services-page-custom .service-area-service-page .service-box .title,
.services-page-custom .service-area-service-page .service-box .number {
  color: var(--color-primary);
}

.projects-page-custom .work-area-work-page .section-title,
.projects-page-custom .work-area-work-page .work-box .title a,
.projects-page-custom .work-area-work-page .meta .tag,
.projects-page-custom .work-area-work-page .meta .date {
  color: var(--color-primary);
}

.contact-page-custom .contact-area-contact-page .section-title,
.contact-page-custom .contact-area-contact-page .contact-mail .title,
.contact-page-custom .contact-area-contact-page .contact-social .title {
  color: var(--color-primary);
}

.about-page-custom .about-area-details .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.services-page-custom .service-area-service-page .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.projects-page-custom .work-area-work-page .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.contact-page-custom .contact-area-contact-page .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.about-page-custom .about-area-details .section-title {
  max-width: none;
}

.services-page-custom .service-area-service-page .section-title {
  max-width: none;
}

.projects-page-custom .work-area-work-page .section-title {
  max-width: none;
}

.contact-page-custom .contact-area-contact-page .section-title {
  max-width: none;
}

.about-page-custom .about-area-details .section-content-wrapper {
  border-top: 0;
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
  width: 100%;
  margin-left: 0;
  gap: 0;
}

.about-page-custom .about-area-details .section-content .text,
.about-page-custom .about-area-details .info-list li,
.about-page-custom .approach-area-about-page .approach-box .approach-list li,
.about-page-custom .info-area-page-about .funfact-item .text {
  color: var(--color-content-secondary);
}

.about-page-custom .about-area-details .section-subtitle,
.about-page-custom .approach-area-about-page .section-subtitle,
.about-page-custom .info-area-page-about .section-subtitle {
  color: var(--color-content-primary);
}

.services-page-custom .service-area-service-page .section-subtitle {
  color: var(--color-content-primary);
}

.projects-page-custom .work-area-work-page .section-subtitle {
  color: var(--color-content-primary);
}

.contact-page-custom .contact-area-contact-page .section-subtitle {
  color: var(--color-content-primary);
}

.about-page-custom .about-area-details .section-subtitle::before,
.about-page-custom .approach-area-about-page .section-subtitle::before,
.about-page-custom .info-area-page-about .section-subtitle::before {
  background: var(--color-primary);
}

.services-page-custom .service-area-service-page .section-subtitle::before {
  background: var(--color-primary);
}

.projects-page-custom .work-area-work-page .section-subtitle::before,
.projects-page-custom .work-area-work-page .info-list li::before {
  background: var(--color-primary);
  color: var(--color-primary);
}

.contact-page-custom .contact-area-contact-page .section-subtitle::before {
  background: var(--color-primary);
}

.about-page-custom .about-area-details .info-list li::before {
  background: var(--color-primary);
}

.about-page-custom .about-area-details .info-list {
  display: none;
}

.about-page-custom .about-area-details .section-content {
  width: 100%;
  max-width: none;
}

.services-page-custom .service-area-service-page .subtitle-wrapper {
  display: none;
}

.services-page-custom .services-wrapper-1 .service-box {
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.services-page-custom .services-wrapper-1 .service-box .service-box-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.services-page-custom .services-wrapper-1 .service-box .count,
.services-page-custom .services-wrapper-1 .service-box .content,
.services-page-custom .services-wrapper-1 .service-box .thumb {
  position: relative;
  z-index: 1;
}

.services-page-custom .services-wrapper-1 .service-box:hover .title,
.services-page-custom .services-wrapper-1 .service-box:hover .service-list li,
.services-page-custom .services-wrapper-1 .service-box:hover .number {
  color: var(--color-secondary);
}

.projects-page-custom .work-area-work-page .subtitle-wrapper,
.projects-page-custom .work-area-work-page .info-list {
  display: none;
}

.contact-page-custom .contact-area-contact-page .subtitle-wrapper {
  display: none;
}

.contact-page-custom .contact-area-contact-page .section-header {
  padding-top: 18px;
}

.contact-page-custom .contact-area-contact-page .section-content-wrapper {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 28px;
  margin-bottom: 64px;
}

.contact-page-custom .contact-area-contact-page .contact-area-contact-page-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-page-custom .contact-area-contact-page .section-content {
  width: 100%;
  max-width: none;
}

.contact-page-custom .contact-area-contact-page .section-content .text {
  color: var(--color-content-secondary);
  max-width: 880px;
}

.contact-page-custom .contact-area-contact-page .contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.contact-page-custom .contact-area-contact-page .contact-meta-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
}

.contact-page-custom .contact-area-contact-page .contact-meta-card .title {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-page-custom .contact-area-contact-page .contact-meta-card .info-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page-custom .contact-area-contact-page .contact-meta-card .info-links a {
  color: var(--color-content-secondary);
  font-size: 18px;
  line-height: 1.45;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.contact-page-custom .contact-area-contact-page .contact-meta-card .info-links a:hover {
  color: var(--color-primary);
}

.contact-page-custom .contact-area-contact-page .contact-wrap {
  width: 100%;
  margin-top: 32px;
}

.contact-page-custom .contact-area-contact-page .contact-map {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.contact-page-custom .contact-area-contact-page .contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.projects-page-custom .work-area-work-page .section-content-wrapper {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
  width: 100%;
  margin-left: 0;
  gap: 0;
  margin-top: 28px;
  margin-bottom: 64px;
}

.projects-page-custom .work-area-work-page .section-content .text {
  color: var(--color-content-secondary);
  max-width: 880px;
}

.projects-page-custom .work-area-work-page .works-wrapper-box {
  margin-bottom: 48px;
}

.projects-page-custom .works-wrapper-8 .work-box .thumb .t-btn {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.project-details-page-custom .work-details-area {
  background: var(--section-shell-bg);
}

.project-details-page-custom .work-details-area .project-group {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.project-details-page-custom .work-details-area .section-title,
.project-details-page-custom .work-details-area .section-info .title,
.project-details-page-custom .work-details-area .details-info .title,
.project-details-page-custom .work-details-area .meta-item .text,
.project-details-page-custom .work-details-area .pagination a {
  color: var(--color-primary);
}

.project-details-page-custom .work-details-area .project-summary,
.project-details-page-custom .work-details-area .meta-item .title,
.project-details-page-custom .work-details-area .section-info .text,
.project-details-page-custom .work-details-area .details-info .text {
  color: var(--color-content-secondary);
}

.project-details-page-custom .work-details-area .project-summary {
  max-width: 760px;
  font-size: 24px;
  line-height: 1.35;
  margin-top: 18px;
}

.project-details-page-custom .work-details-area .meta-wrapper {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 56px;
}

.project-details-page-custom .work-details-area .meta-item {
  border-top-color: var(--color-border);
}

.project-details-page-custom .work-details-area .project-hero-media {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
}

.service-details-page-custom .work-details-area .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.service-details-page-custom .work-details-area .project-summary {
  max-width: 980px;
}

.service-details-page-custom .work-details-area .project-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center;
}

.project-details-page-custom .work-details-area .section-info {
  margin-top: 0;
}

.project-details-page-custom .work-details-area .section-info .title {
  max-width: 520px;
}

.project-details-page-custom .work-details-area .section-info .feature-list li {
  color: var(--color-primary);
}

.project-details-page-custom .work-details-area .gallery-wrapper,
.project-details-page-custom .work-details-area .gallery-wrapper-2 {
  padding: 0;
  width: 100%;
}

.project-details-page-custom .work-details-area .gallery-wrapper {
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-details-page-custom .work-details-area .gallery-wrapper > *:nth-child(1),
.project-details-page-custom .work-details-area .gallery-wrapper > *:nth-child(3) {
  grid-column: auto;
}

.project-details-page-custom .work-details-area .gallery-wrapper .image,
.project-details-page-custom .work-details-area .section-title-wrapper .title-thumb,
.project-details-page-custom .work-details-area .gallery-wrapper-2 .image {
  border-radius: 24px;
  overflow: hidden;
}

.project-details-page-custom .work-details-area .project-detail-reveal-image {
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
}

.project-details-page-custom .work-details-area .project-detail-parallax-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.project-details-page-custom .work-details-area .section-details {
  max-width: none;
  margin-left: 0;
  gap: 24px;
}

.project-details-page-custom .work-details-area .details-info {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
}

.project-details-page-custom .work-details-area .pagination {
  margin-top: 56px;
}

.project-details-page-custom .work-details-area .pagination .project-back-link {
  width: auto;
  height: auto;
  min-height: 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 14px 10px 10px;
  gap: 14px;
  border-radius: 999px;
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.45);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.project-details-page-custom .work-details-area .pagination .project-back-link__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.project-details-page-custom .work-details-area .pagination .project-back-link__label {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.project-details-page-custom .work-details-area .pagination .project-back-link:hover,
.project-details-page-custom .work-details-area .pagination .project-back-link:focus {
  transform: translateY(-2px);
}

.project-details-page-custom .work-details-area .pagination .project-back-link:hover .project-back-link__icon,
.project-details-page-custom .work-details-area .pagination .project-back-link:focus .project-back-link__icon {
  background: var(--white);
  color: var(--color-primary);
  transform: translateX(-2px);
}

.project-details-page-custom .work-details-area .pagination .project-back-link svg {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .project-details-page-custom .work-details-area .section-title-wrapper .title-thumb {
    max-width: 220px;
  }

  .service-details-page-custom .work-details-area .project-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .project-details-page-custom .work-details-area .project-summary {
    max-width: 100%;
    font-size: 21px;
  }

  .project-details-page-custom .work-details-area .meta-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    margin-bottom: 44px;
  }

  .project-details-page-custom .work-details-area .project-hero-media {
    margin-bottom: 44px;
  }

  .project-details-page-custom .work-details-area .section-info .title {
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .project-details-page-custom .work-details-area .section-title-wrapper {
    gap: 20px;
  }

  .service-details-page-custom .work-details-area .section-title-wrapper {
    gap: 0;
  }

  .project-details-page-custom .work-details-area .section-title-wrapper .title-thumb {
    max-width: 260px;
  }

  .project-details-page-custom .work-details-area .meta-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    margin-bottom: 36px;
  }

  .project-details-page-custom .work-details-area .section-info {
    gap: 24px;
    margin-bottom: 36px;
  }

  .project-details-page-custom .work-details-area .gallery-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-details-page-custom .work-details-area .section-details {
    gap: 16px;
  }

  .project-details-page-custom .work-details-area .details-info {
    padding: 24px;
  }

  .project-details-page-custom .work-details-area .pagination {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .project-details-page-custom .work-details-area .section-title-wrapper .title-thumb {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  .service-details-page-custom .work-details-area .project-summary {
    max-width: 100%;
  }

  .service-details-page-custom .work-details-area .project-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .project-details-page-custom .work-details-area .section-title {
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .project-details-page-custom .work-details-area .project-group {
    margin-bottom: 14px;
  }

  .project-details-page-custom .work-details-area .project-summary {
    font-size: 18px;
    line-height: 1.45;
    margin-top: 14px;
  }

  .project-details-page-custom .work-details-area .meta-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .project-details-page-custom .work-details-area .meta-item .title,
  .project-details-page-custom .work-details-area .meta-item .text,
  .project-details-page-custom .work-details-area .section-info .text,
  .project-details-page-custom .work-details-area .section-info .feature-list li,
  .project-details-page-custom .work-details-area .details-info .text {
    font-size: 16px;
    line-height: 1.5;
  }

  .project-details-page-custom .work-details-area .project-hero-media {
    border-radius: 20px;
    margin-bottom: 28px;
  }

  .project-details-page-custom .work-details-area .section-info .title {
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .project-details-page-custom .work-details-area .gallery-wrapper .image,
  .project-details-page-custom .work-details-area .section-title-wrapper .title-thumb,
  .project-details-page-custom .work-details-area .gallery-wrapper-2 .image,
  .project-details-page-custom .work-details-area .details-info {
    border-radius: 20px;
  }

  .project-details-page-custom .work-details-area .details-info {
    padding: 20px;
  }

  .project-details-page-custom .work-details-area .pagination {
    justify-content: center;
    margin-top: 32px;
  }

  .project-details-page-custom .work-details-area .pagination .project-back-link {
    width: auto;
    max-width: 100%;
    justify-content: center;
    padding: 10px 18px 10px 10px;
    gap: 12px;
  }

  .project-details-page-custom .work-details-area .pagination .project-back-link__label {
    font-size: 17px;
  }
}

@media only screen and (max-width: 479px) {
  .project-details-page-custom .work-details-area .section-title {
    font-size: 28px;
    line-height: 1.02;
  }

  .project-details-page-custom .work-details-area .section-info .title {
    font-size: 24px;
  }

  .project-details-page-custom .work-details-area .pagination .project-back-link__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .project-details-page-custom .work-details-area .pagination .project-back-link {
    padding-right: 16px;
  }

  .project-details-page-custom .work-details-area .pagination .project-back-link__label {
    font-size: 16px;
  }
}

.services-page-custom .service-area-service-page .service-content-wrapper .service-content .text.text-invert > div {
  background-image: linear-gradient(to right, var(--color-primary) 50%, rgba(0, 35, 85, 0.3) 51%);
}

.services-page-custom .client-area-service-page .section-title,
.services-page-custom .client-area-service-page .section-title span {
  color: var(--color-primary);
}

.services-page-custom .client-area-service-page {
  background: var(--color-secondary);
}

.services-page-custom .client-area-service-page .section-title {
  max-width: none;
}

.services-page-custom .client-area-service-page .client-area-inner {
  border-bottom: 0;
  padding-bottom: 0;
}

.services-page-custom .client-area-service-page .section-title-wrapper {
  width: 100%;
  max-width: none;
}

.services-page-custom .client-area-service-page .section-content {
  margin-top: 0;
}

.services-page-custom .client-area-service-page .section-content .text-wrapper {
  max-width: 760px;
  margin-top: 32px;
  margin-left: 0;
}

.services-page-custom .client-area-service-page .section-content .text {
  color: var(--color-content-secondary);
}

.services-page-custom .client-area-service-page .client-box {
  background-color: var(--color-primary);
}

.services-page-custom .client-area-service-page .client-box img {
  filter: url(#logo-shade);
}

.services-page-custom .client-area-service-page .line {
  border-bottom-color: var(--color-primary);
}

.services-page-custom .client-area-service-page .lines-wrapper {
  display: none;
}

.about-page-custom .approach-area-about-page .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.about-page-custom .approach-area-about-page .section-title {
  max-width: none;
}

.about-page-custom .approach-area-about-page .subtitle-wrapper {
  display: none;
}

.about-page-custom .approach-area-about-page .approach-wrapper-box {
  border-top: 0;
  max-width: none;
  width: 100%;
}

.about-page-custom .approach-area-about-page .approach-wrapper {
  width: 100%;
  max-width: none;
  border-top: 0;
}

.about-page-custom .approach-area-about-page .approach-box {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
}

.about-page-custom .approach-area-about-page .approach-box .title {
  justify-content: flex-start;
  gap: 16px;
}

.about-page-custom .about-area-details .rr-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

.about-page-custom .about-area-details .rr-btn .btn-wrap .text-one,
.about-page-custom .about-area-details .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.about-page-custom .about-area-details .rr-btn:hover .btn-wrap .text-two,
.about-page-custom .about-area-details .rr-btn:focus .btn-wrap .text-two {
  color: var(--color-primary);
}

.about-page-custom .about-area-details .moving-gallery li {
  border-radius: 24px;
  overflow: hidden;
}

.about-page-custom .info-area-page-about .section-header {
  margin-bottom: 52px;
}

.about-page-custom .info-area-page-about {
  background: var(--color-secondary);
}

.about-page-custom .info-area-page-about .section-title {
  color: var(--color-primary);
}

.about-page-custom .info-area-page-about .section-header {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.about-page-custom .info-area-page-about .section-title-wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0;
}

.about-page-custom .info-area-page-about .subtitle-wrapper {
  display: none;
}

.about-page-custom .info-area-page-about .funfact-item .number {
  color: var(--color-primary);
}

.about-page-custom .info-area-page-about .funfact-item {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(0, 35, 85, 0.08);
  border-radius: 24px;
}

.about-page-custom .info-area-page-about .funfact-item .text {
  color: var(--color-content-secondary);
}

.about-page-custom .info-area-page-about .info-area-page-about-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .about-page-custom .page-title-area .page-title {
    font-size: 56px;
    line-height: 0.92;
  }

  .services-page-custom .page-title-area .page-title {
    font-size: 56px;
    line-height: 0.92;
  }

  .projects-page-custom .page-title-area .page-title {
    font-size: 56px;
    line-height: 0.92;
  }

  .contact-page-custom .page-title-area .page-title {
    font-size: 56px;
    line-height: 0.92;
  }

  .about-page-custom .about-area-details .section-title,
  .about-page-custom .approach-area-about-page .section-title,
  .about-page-custom .info-area-page-about .section-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .services-page-custom .service-area-service-page .section-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .projects-page-custom .work-area-work-page .section-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .contact-page-custom .contact-area-contact-page .section-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .about-page-custom .about-area-details .section-header {
    padding-top: 18px;
  }

  .services-page-custom .service-area-service-page .section-header {
    padding-top: 18px;
  }

  .projects-page-custom .work-area-work-page .section-header {
    padding-top: 18px;
  }

  .contact-page-custom .contact-area-contact-page .section-header {
    padding-top: 18px;
  }

  .services-page-custom .client-area-service-page .section-content .text-wrapper {
    margin-top: 24px;
  }

  .projects-page-custom .work-area-work-page .section-content-wrapper {
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .contact-page-custom .contact-area-contact-page .section-content-wrapper {
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .contact-page-custom .contact-area-contact-page .contact-area-contact-page-inner {
    padding-bottom: 0;
  }

  .contact-page-custom .contact-area-contact-page .section-content .text {
    max-width: 100%;
  }

  .contact-page-custom .contact-area-contact-page .contact-meta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-page-custom .contact-area-contact-page .contact-map,
  .contact-page-custom .contact-area-contact-page .contact-map iframe {
    min-height: 420px;
  }

  .about-page-custom .about-area-details .section-content-wrapper {
    margin-top: 28px;
    padding-top: 0;
  }

  .about-page-custom .about-area-details .section-content .text {
    font-size: 17px;
    line-height: 1.5;
  }

  .about-page-custom .about-area-details .section-content .text:not(:first-child) {
    margin-top: 22px;
  }

  .about-page-custom .about-area-details .section-content .btn-wrapper {
    margin-top: 28px;
  }

  .about-page-custom .info-area-page-about .section-header {
    margin-bottom: 36px;
  }

  .about-page-custom .info-area-page-about .info-area-page-about-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-page-custom .approach-area-about-page .section-header {
    margin-top: 0;
    padding-top: 16px;
  }

  .about-page-custom .approach-area-about-page .approach-wrapper-box {
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .about-page-custom .approach-area-about-page .approach-wrapper {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .about-page-custom .approach-area-about-page .approach-box {
    padding: 20px 18px 18px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
  }

  .about-page-custom .approach-area-about-page .approach-box .title {
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .about-page-custom .approach-area-about-page .approach-box .title br {
    display: none;
  }

  .about-page-custom .approach-area-about-page .approach-box .approach-list {
    margin-top: 0;
  }

  .about-page-custom .approach-area-about-page .approach-box .approach-list li {
    font-size: 16px;
    line-height: 1.45;
  }
}

@media only screen and (max-width: 479px) {
  .about-page-custom .page-title-area .page-title {
    font-size: 48px;
  }

  .services-page-custom .page-title-area .page-title {
    font-size: 48px;
  }

  .projects-page-custom .page-title-area .page-title {
    font-size: 48px;
  }

  .contact-page-custom .page-title-area .page-title {
    font-size: 48px;
  }

  .about-page-custom .about-area-details .section-title,
  .about-page-custom .approach-area-about-page .section-title,
  .about-page-custom .info-area-page-about .section-title {
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .services-page-custom .service-area-service-page .section-title {
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .projects-page-custom .work-area-work-page .section-title {
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .contact-page-custom .contact-area-contact-page .section-title {
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .services-page-custom .client-area-service-page .section-content .text-wrapper {
    max-width: 100%;
  }

  .about-page-custom .about-area-details .section-content .text {
    font-size: 16px;
    line-height: 1.48;
  }

  .contact-page-custom .contact-area-contact-page .contact-meta-card {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-page-custom .contact-area-contact-page .contact-meta-card .title,
  .contact-page-custom .contact-area-contact-page .contact-meta-card .info-links a,
  .contact-page-custom .contact-area-contact-page .section-content .text {
    font-size: 16px;
    line-height: 1.48;
  }

  .about-page-custom .approach-area-about-page .section-title {
    font-size: 22px;
    line-height: 1.06;
  }

  .about-page-custom .approach-area-about-page .approach-box {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .about-page-custom .approach-area-about-page .approach-box .title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-page-custom .approach-area-about-page .approach-box .approach-list li {
    font-size: 15px;
    line-height: 1.42;
  }

  .contact-page-custom .contact-area-contact-page .contact-map,
  .contact-page-custom .contact-area-contact-page .contact-map iframe {
    min-height: 320px;
  }

  .contact-page-custom .contact-area-contact-page .section-content-wrapper {
    margin-bottom: 32px;
  }
}


@media only screen and (max-width: 1199px) {
  :root {
    --site-header-offset: 168px;
  }

  main > .hero-area:first-child .big-text {
    display: flex !important;
    font-size: clamp(120px, 21vw, 260px);
    line-height: 0.72;
  }

  main > .hero-area:first-child .big-text-wrapper {
    margin-top: 12px;
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__bottom {
    grid-template-columns: 160px 1fr max-content;
  }

  .site-header__nav ul {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-area .footer-widget-wrapper {
    gap: 30px 72px;
  }

  .footer-area .footer-widget-box:nth-child(2),
  .footer-area .footer-widget-box:nth-child(3) {
    padding-left: 24px;
  }

  main > .hero-area:first-child .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: var(--space-10) 60px;
  }

  .about-area__window-title {
    font-size: clamp(74px, 6.4vw, 118px);
  }

  .about-area--with-gallery .section-content {
    gap: 28px;
    padding: 88px 0 64px;
  }

  .about-area--with-gallery .works-wrapper-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .about-area--with-gallery .works-wrapper-8 .work-box .thumb,
  .about-area--with-gallery .works-wrapper-8 .work-box .thumb .image,
  .projects-page-custom .works-wrapper-8 .work-box .thumb,
  .projects-page-custom .works-wrapper-8 .work-box .thumb .image {
    height: 250px;
  }

  .materials-section .section-title {
    max-width: none;
  }

  .materials-section__grid {
    grid-template-columns: 1fr;
  }

}

@media only screen and (max-width: 991px) {
  :root {
    --site-header-offset: 72px;
  }

  .body-page-inner .page-title-area-inner.section-spacing-top {
    padding-top: 40px;
  }

  .site-header__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 0;
    min-height: 72px;
  }

  .site-header__logo,
  .site-header__toggle {
    flex: 0 0 auto;
    align-self: center;
  }

  .site-header__logo {
    display: flex;
    align-items: center;
    margin-right: auto;
  }

  .site-header__toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__logo a {
    display: flex;
    align-items: center;
  }

  .site-header__logo img {
    width: min(150px, 42vw);
    max-width: 150px;
    max-height: 44px;
  }

  .footer-area .footer-top-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer-area .footer-top-inner .info-text {
    justify-self: start;
    text-align: left;
  }

  .footer-area .footer-top-inner .info-text .text {
    margin-left: 0;
  }

  .footer-area .footer-widget-box:nth-child(2),
  .footer-area .footer-widget-box:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  main > .hero-area:first-child .hero-area-inner {
    padding-top: 0;
  }

  main > .hero-area:first-child .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 48px;
  }

  main > .hero-area:first-child .section-content {
    grid-column: 1;
  }

  main > .hero-area:first-child .big-text {
    font-size: clamp(75px, 19vw, 150px);
    line-height: 0.8;
  }

  main > .hero-area:first-child .big-text-wrapper {
    margin-top: 0;
  }

  .hero-badge {
    width: 88px;
    margin-left: 8px;
    margin-right: 10px;
    transform: translateY(-0.03em);
  }

  .about-area--with-gallery .section-content {
    gap: 24px;
    padding: 0 0 40px;
  }

  .about-area--with-gallery .works-wrapper-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .projects-page-custom .work-area-work-page .works-wrapper-box {
    margin-bottom: 40px;
  }

  .about-area--with-gallery .works-wrapper-8 .work-box .thumb,
  .about-area--with-gallery .works-wrapper-8 .work-box .thumb .image,
  .projects-page-custom .works-wrapper-8 .work-box .thumb,
  .projects-page-custom .works-wrapper-8 .work-box .thumb .image {
    height: 220px;
  }


  @keyframes heroBadgeEnter {
    from {
      opacity: 0;
      transform: translate3d(28px, -0.03em, 0) scale(0.94);
    }
    to {
      opacity: 1;
      transform: translateY(-0.03em) scale(1);
    }
  }

  .progress-wrap {
    right: 24px !important;
    bottom: 24px !important;
  }

  .side-info {
    width: 100vw;
    max-width: 100vw;
    padding: 24px 20px 20px;
    border-left: 0;
    box-shadow: none;
  }

  .side-info-content {
    min-height: calc(100vh - 44px);
    gap: 24px;
  }

  .offset-header {
    padding-bottom: 20px;
  }

  .offset-logo img {
    width: min(164px, 46vw);
    max-width: 164px;
  }

  .side-info-close {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --site-header-offset: 68px;
  }

  .body-page-inner .page-title-area-inner.section-spacing-top {
    padding-top: 24px;
  }

  .site-header__bottom {
    gap: 10px;
    padding: 8px 0;
    min-height: 68px;
  }

  .site-header__logo img {
    width: min(132px, 40vw);
    max-width: 132px;
    max-height: 40px;
  }

  .side-info {
    padding: 20px 16px 16px;
  }

  .side-info-content {
    min-height: calc(100vh - 36px);
    gap: 20px;
  }

  .offset-header {
    padding-bottom: 16px;
  }

  .offset-logo img {
    width: min(148px, 52vw);
    max-width: 148px;
  }

  .side-info-close {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .footer-area .footer-top-inner {
    padding-bottom: 36px;
  }

  .footer-area .footer-top-inner .info-text .text,
  .footer-area .footer-top-inner .info-link a {
    font-size: 18px;
    line-height: 1.5;
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-area .footer-widget-wrapper-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-area .footer-widget-box .title {
    margin-bottom: 14px;
  }

  .footer-area .footer-nav-list li {
    font-size: 18px;
    line-height: 1.5;
  }

  .footer-area .copyright-area-inner {
    padding: 22px 0;
  }

  .footer-area .copyright-text .text {
    font-size: 16px;
    line-height: 1.4;
  }

  .about-area--with-gallery .works-wrapper-8 {
    grid-template-columns: 1fr;
  }

  .about-area--with-gallery .works-wrapper-box,
  .projects-page-custom .work-area-work-page .works-wrapper-box {
    margin-bottom: 32px;
  }

  .about-area--with-gallery .works-wrapper-8 .work-box .thumb,
  .about-area--with-gallery .works-wrapper-8 .work-box .thumb .image,
  .projects-page-custom .works-wrapper-8 .work-box .thumb,
  .projects-page-custom .works-wrapper-8 .work-box .thumb .image {
    height: 200px;
  }

  .materials-section__card {
    padding: 24px;
    border-radius: 22px;
  }

  .materials-section__brand-name {
    font-size: clamp(28px, 8vw, 42px);
  }

  .materials-section__text {
    font-size: 18px;
  }

  main > .hero-area:first-child .big-text {
    font-size: clamp(55px, 17vw, 105px);
    line-height: 0.86;
  }

  .about-area__window-title {
    font-size: clamp(72px, 22vw, 104px);
  }

}
