*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  color: #f9f9f9;
  background-color: #1f1e1d;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  min-height: 100dvh;
  overflow-x: clip;
}
body:has(#wpadminbar) .header {
  top: 32px;
}

.fixed-background {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/framer.avif");
  background-repeat: repeat;
  background-position: center top;
  border: 0;
  background-size: 153.5px auto;
  opacity: 0.04;
  width: 100dvw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

a {
  color: #f84525;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 55px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.default-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 8px;
  padding: 0 25px;
  background-color: transparent;
  border: 1px solid #67666c;
  border-radius: 45px;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.default-btn img {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.default-btn:hover {
  background-color: #67666c;
  border-color: #f9f9f9;
  color: #f9f9f9;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #f84525;
  outline-offset: 2px;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .yes-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .no-mobile {
    display: none !important;
  }
}

a.wave-effect {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #f84525;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
a.wave-effect:hover {
  color: #f9f9f9;
}
a.wave-effect span[data-wave] {
  display: inline-block;
}

@-webkit-keyframes waveLetter {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}

@keyframes waveLetter {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.page-loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #1f1e1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.page-loading .page-loading__image {
  width: 230px;
  height: auto;
}
@media (min-width: 1024px) {
  .page-loading .page-loading__image {
    width: 250px;
  }
}
.page-loading.loaded .page-loading__image {
  -webkit-animation: hide 0.2s forwards;
          animation: hide 0.2s forwards;
}
.page-loading.loaded {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

@-webkit-keyframes hide {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes hide {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.section-header .section-header-title {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.section-header .section-header-title br {
  display: none;
}
@media (min-width: 1024px) {
  .section-header .section-header-title br {
    display: block;
  }
}
@media (min-width: 390px) {
  .section-header .section-header-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .section-header .section-header-title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.section-header .section-header-title mark {
  color: #67666c;
  background-color: transparent;
}
.section-header .section-header-description {
  color: #67666c;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 300;
  text-align: left;
  margin-bottom: 0;
}
.section-header .section-header-description br {
  display: none;
}
@media (min-width: 1024px) {
  .section-header .section-header-description br {
    display: block;
  }
}
@media (min-width: 1024px) {
  .section-header .section-header-description {
    text-align: right;
    font-size: 16px;
  }
}
.section-header.sticky-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
@media (min-width: 1024px) {
  .section-header.sticky-header {
    gap: 20px;
    position: sticky;
    top: 140px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.section-header.sticky-header .section-header-title {
  margin-bottom: 0;
}
.section-header.sticky-header .section-header-description {
  color: #67666c;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 300;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .section-header.sticky-header .section-header-description {
    color: #f9f9f9;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.section-header.sticky-header a {
  color: #f9f9f9;
  font-weight: 400;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  scroll-margin-top: 100px;
}
.section-header.sticky-header a:hover {
  color: #f84525;
}
.section-header.sticky-header a::after {
  content: "*";
  color: #f84525;
  font-size: 24px;
  font-weight: 300;
  margin-left: 2px;
}
.section-header.left-align-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
@media (min-width: 1024px) {
  .section-header.left-align-header {
    gap: 20px;
  }
}
.section-header.left-align-header .section-header-title {
  margin-bottom: 0;
}
.section-header.left-align-header .section-header-description {
  color: #67666c;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 300;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .section-header.left-align-header .section-header-description {
    color: #f9f9f9;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.section-header.left-align-header a {
  color: #f9f9f9;
  font-weight: 400;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  scroll-margin-top: 100px;
}
.section-header.left-align-header a:hover {
  color: #f84525;
}
.section-header.left-align-header a::after {
  content: "*";
  color: #f84525;
  font-size: 24px;
  font-weight: 300;
  margin-left: 2px;
}

.light-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.light-header .light-header-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  white-space: nowrap;
}
.light-header .light-header-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#333135));
  background: linear-gradient(to right, transparent 0%, #333135 100%);
  border-radius: 2px;
}
.light-header .light-header-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#333135), to(transparent));
  background: linear-gradient(to right, #333135 0%, transparent 100%);
  border-radius: 2px;
}

.faq {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1025px) {
  .faq {
    padding: 60px 0;
  }
}
.faq .faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 1024px) {
  .faq .faq-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.faq .faq-inner .faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.faq .faq-inner .faq-list .faq-item {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .faq .faq-inner .faq-list .faq-item {
    padding: 25px 0;
  }
}
.faq .faq-inner .faq-list .faq-item:first-of-type {
  padding-top: 0;
}
.faq .faq-inner .faq-list .faq-item:last-of-type {
  padding-bottom: 0;
}
.faq .faq-inner .faq-list .faq-item .faq-item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #f9f9f9;
  letter-spacing: -0.02em;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
  width: 100%;
}
@media (min-width: 1024px) {
  .faq .faq-inner .faq-list .faq-item .faq-item-question {
    font-size: 24px;
    gap: 40px;
  }
}
.faq .faq-inner .faq-list .faq-item .faq-item-question::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("../../assets/images/icons/eye-close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
  margin-top: -2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .faq .faq-inner .faq-list .faq-item .faq-item-question::after {
    margin-top: 5px;
  }
}
.faq .faq-inner .faq-list .faq-item:hover .faq-item-question {
  color: #f9f9f9;
}
.faq .faq-inner .faq-list .faq-item:hover .faq-item-question::after {
  opacity: 1;
}
.faq .faq-inner .faq-list .faq-item.active .faq-item-question {
  color: #f9f9f9;
}
.faq .faq-inner .faq-list .faq-item.active .faq-item-question::after {
  opacity: 1;
}
.faq .faq-inner .faq-list .faq-item .faq-item-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.5s ease, display 0.5s ease allow-discrete;
  transition: grid-template-rows 0.5s ease, display 0.5s ease allow-discrete;
  transition: grid-template-rows 0.5s ease, display 0.5s ease allow-discrete, -ms-grid-rows 0.5s ease;
}
.faq .faq-inner .faq-list .faq-item .faq-item-answer .faq-item-answer-text {
  min-height: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #67666c;
  padding-top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, padding-top 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, padding-top 0.3s ease, color 0.3s ease;
}
@media (min-width: 1024px) {
  .faq .faq-inner .faq-list .faq-item .faq-item-answer .faq-item-answer-text {
    font-size: 18px;
    line-height: 1.5;
  }
}
.faq .faq-inner .faq-list .faq-item.active .faq-item-question::after {
  background-image: url("../../assets/images/icons/eye-open.svg");
}
.faq .faq-inner .faq-list .faq-item.active .faq-item-answer {
  grid-template-rows: 1fr;
}
.faq .faq-inner .faq-list .faq-item.active .faq-item-answer .faq-item-answer-text {
  opacity: 1;
  padding-top: 10px;
}
@media (min-width: 1024px) {
  .faq .faq-inner .faq-list .faq-item.active .faq-item-answer .faq-item-answer-text {
    color: #e0e0e0;
  }
}
.faq .faq-inner .faq-list:has(.faq-item:hover) .faq-item:not(:hover) .faq-item-question {
  color: #67666c;
}
.faq .faq-inner .faq-list:has(.faq-item:hover) .faq-item:not(:hover) .faq-item-question::after {
  opacity: 0.6;
}
.faq .faq-inner .faq-list:has(.faq-item:hover) .faq-item:not(:hover).active .faq-item-question {
  color: #e0e0e0;
}
.faq .faq-inner .faq-list:has(.faq-item:hover) .faq-item:not(:hover).active .faq-item-question::after {
  opacity: 1;
}
.faq .faq-inner .faq-list:has(.faq-item:hover) .faq-item:not(:hover).active .faq-item-answer .faq-item-answer-text {
  color: #67666c;
}
.faq .faq-inner .faq-list:has(.faq-item.active) .faq-item:not(.active):not(:hover) .faq-item-question {
  color: #67666c;
}
.faq .faq-inner .faq-list:has(.faq-item.active) .faq-item:not(.active):not(:hover) .faq-item-question::after {
  opacity: 0.6;
}
@starting-style {
  .faq .faq-inner .faq-list .faq-item.active .faq-item-answer {
    grid-template-rows: 0fr;
  }
  .faq .faq-inner .faq-list .faq-item.active .faq-item-answer .faq-item-answer-text {
    opacity: 0;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 480px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1350px;
  }
}
.container.container-header {
  max-width: 100%;
}
@media (min-width: 1300px) {
  .container.container-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.container.container-narrow {
  max-width: 800px;
}
.container.container-wide {
  max-width: 1400px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 8px 0;
  overflow: visible;
}
@media (min-width: 768px) {
  .header {
    background: -webkit-gradient(linear, left top, left bottom, from(#1f1e1d), to(transparent));
    background: linear-gradient(to bottom, #1f1e1d, transparent);
  }
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  background: -webkit-gradient(linear, left top, left bottom, from(#1f1e1d), color-stop(42%, rgba(31, 30, 29, 0.82)), color-stop(62%, rgba(31, 30, 29, 0.35)), to(transparent));
  background: linear-gradient(to bottom, #1f1e1d 0%, rgba(31, 30, 29, 0.82) 42%, rgba(31, 30, 29, 0.35) 62%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 768px) {
  .header:before {
    display: none;
  }
}
@media (min-width: 480px) {
  .header {
    padding: 10px 0;
  }
}
@media (min-width: 1300px) {
  .header {
    padding: 20px 0;
  }
}
.header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  overflow: visible;
}
@media (min-width: 480px) {
  .header .header-inner {
    height: 70px;
  }
}
@media (min-width: 768px) {
  .header .header-inner {
    height: 80px;
  }
}
.header .header-logo {
  z-index: 9999;
  overflow: visible;
  position: relative;
}
.header .header-logo a {
  display: block;
  overflow: visible;
}
.header .header-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 150px;
}
.header .header-logo-black {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --logo-toggle-x: 0px;
  --logo-toggle-y: 0px;
  --logo-radius: 0px;
  clip-path: circle(0px at var(--logo-toggle-x) var(--logo-toggle-y));
  -webkit-transition: clip-path 0.6s ease-in-out;
  transition: clip-path 0.6s ease-in-out;
  will-change: clip-path;
}
.header.menu-active .header-logo-black {
  clip-path: circle(var(--logo-radius) at var(--logo-toggle-x) var(--logo-toggle-y));
}
.header .header-nav {
  margin-left: auto;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .header .header-nav {
    margin-right: 30px;
  }
}
@media (min-width: 1024px) {
  .header .header-nav {
    margin-right: 50px;
  }
}
.header .header-nav .header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) {
  .header .header-nav .header-nav-list {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .header .header-nav .header-nav-list {
    gap: 32px;
  }
}
.header .header-nav li {
  list-style: none;
}
.header .header-nav a {
  color: #f9f9f9;
  font-weight: 600;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  font-size: 11px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 480px) {
  .header .header-nav a {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .header .header-nav a {
    font-size: 14px;
  }
}
.header .header-nav a:hover {
  color: #f84525;
}
.header .header-nav .current-menu-item a {
  color: #f84525;
}
.header .header-nav .current-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 75%;
  height: 1px;
  background-color: #f9f9f9;
  -webkit-animation: lineGrow 0.6s ease forwards;
          animation: lineGrow 0.6s ease forwards;
}
.header .header-cta {
  display: none;
}
.header .header-toggle {
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  position: relative;
  z-index: 101;
  background-color: #f9f9f9;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  will-change: transform;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 480px) {
  .header .header-toggle {
    width: 40px;
    height: 40px;
    padding: 7px;
  }
}
.header .header-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: #1f1e1d;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
}
@media (min-width: 480px) {
  .header .header-toggle::before {
    width: 45px;
    height: 45px;
  }
}
.header .header-toggle .header-toggle-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1f1e1d;
  position: relative;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.header .header-toggle .header-toggle-line::before, .header .header-toggle .header-toggle-line::after {
  content: "";
  display: block;
  width: 85%;
  height: 1px;
  background-color: #1f1e1d;
  position: absolute;
  left: 0;
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, width 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
}
.header .header-toggle .header-toggle-line::before {
  top: -5px;
}
@media (min-width: 480px) {
  .header .header-toggle .header-toggle-line::before {
    top: -6px;
  }
}
.header .header-toggle .header-toggle-line::after {
  top: 5px;
}
@media (min-width: 480px) {
  .header .header-toggle .header-toggle-line::after {
    top: 6px;
  }
}
.header .header-toggle[aria-expanded=true]::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.header .header-toggle[aria-expanded=true] .header-toggle-line {
  background-color: transparent;
}
.header .header-toggle[aria-expanded=true] .header-toggle-line::before, .header .header-toggle[aria-expanded=true] .header-toggle-line::after {
  background-color: #f9f9f9;
  width: 100%;
}
.header .header-toggle[aria-expanded=true] .header-toggle-line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .header-toggle[aria-expanded=true] .header-toggle-line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .header-toggle-menu {
  --toggle-x: 100%;
  --toggle-y: 0px;
  --menu-size: 200vmax;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .header .header-toggle-menu {
    padding: 24px;
  }
}
.header .header-toggle-menu::before {
  content: "";
  position: absolute;
  left: var(--toggle-x);
  top: var(--toggle-y);
  width: var(--menu-size);
  height: var(--menu-size);
  border-radius: 50%;
  background-color: #f9f9f9;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  will-change: transform, left, top;
  z-index: 0;
}
.header .header-toggle-menu .header-toggle-menu-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .header .header-toggle-menu .header-toggle-menu-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    height: auto;
    padding-top: 0;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container {
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  position: relative;
  margin-top: 76px;
}
@media (min-width: 768px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    margin-top: 0;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li {
  list-style: none;
  position: relative;
  counter-increment: menu-item;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li a {
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #1f1e1d), color-stop(50%, #bbb));
  background: linear-gradient(to right, #1f1e1d 50%, #bbb 50%);
  background-size: 200% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: background-position 0.4s ease, -webkit-transform 0.3s ease;
  transition: background-position 0.4s ease, -webkit-transform 0.3s ease;
  transition: background-position 0.4s ease, transform 0.3s ease;
  transition: background-position 0.4s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li a {
    font-size: 45px;
    line-height: 60px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li a {
    font-size: 75px;
    line-height: 80px;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    gap: 20px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:nth-child(n+4)::before {
  font-size: 12px;
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:nth-child(n+4) a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:nth-child(n+4) a {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:nth-child(n+4) a {
    font-size: 20px;
    line-height: 30px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li::before {
  content: counter(menu-item, decimal-leading-zero) ".";
  font-size: 14px;
  font-weight: 700;
  color: #9c9c9c;
  margin-top: 8px;
  width: 28px;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li::before {
    font-size: 15px;
    margin-top: 19px;
    width: 30px;
  }
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li::before {
    font-size: 12px;
    margin-top: 7px;
    width: 30px;
  }
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li::before {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:hover a {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li:hover::before {
    opacity: 1;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li#menu-item-47 {
  margin-top: 30px;
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li#menu-item-47 a {
  gap: 5px;
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li#menu-item-47 a:after {
  content: "HIRING";
  color: #f9f9f9;
  background-color: #f84525;
  -webkit-text-fill-color: #f9f9f9;
  padding: 4px 5px;
  line-height: 1;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 480px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul li#menu-item-47 a:after {
    font-size: 10px;
  }
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul:has(li:hover) li:not(:hover) a {
    background-position: 100% 0;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul ul {
  counter-reset: menu-item;
}
.header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul::before {
  content: "MENU";
  position: absolute;
  top: 30px;
  left: -90px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #9c9c9c;
  text-align: left;
  text-transform: uppercase;
  background: none;
  border: none;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: none;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .menu-menu-toggle-container ul::before {
    display: block;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .company-info {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info a {
  font-size: 16px;
  font-weight: 300;
  color: #f84525;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .company-info a {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info a span {
  font-size: 16px;
  font-weight: 400;
  color: #f84525;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .company-info a span {
    font-size: 18px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info a span:hover {
  text-decoration: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info a span.company-info-phone-country {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1f1e1d;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info a:hover {
  text-decoration: none;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1f1e1d;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .company-info p {
    font-size: 16px;
    line-height: 24px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info p.company-info-address {
  margin-bottom: 20px;
  margin-top: 20px;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info p.company-info-copyright {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1f1e1d;
}
@media (min-width: 1024px) {
  .header .header-toggle-menu .header-toggle-menu-inner .company-info p.company-info-copyright {
    font-size: 16px;
  }
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info .company-info-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info .company-info-social li {
  list-style: none;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info .company-info-social li a {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info .company-info-social li a img {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(1%) saturate(0%) hue-rotate(345deg) brightness(96%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(65%) sepia(1%) saturate(0%) hue-rotate(345deg) brightness(96%) contrast(91%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-toggle-menu .header-toggle-menu-inner .company-info .company-info-social li a:hover img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}
.header .header-toggle-menu.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.header .header-toggle-menu.active::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.header .header-toggle-menu.active .header-toggle-menu-inner .menu-menu-toggle-container ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.header .header-toggle-menu.active .header-toggle-menu-inner .company-info {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

@keyframes waveLetter {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@-webkit-keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 75%;
  }
}
@keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 75%;
  }
}
.nav-open {
  overflow: hidden;
}

@-webkit-keyframes letterFlip {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes letterFlip {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
.letter-flip {
  -webkit-animation: letterFlip 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: letterFlip 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-footer {
  width: 100%;
  border-top: 1px solid #67666c;
}
.site-footer .footer-main {
  padding: 50px 0 30px;
}
@media (min-width: 1024px) {
  .site-footer .footer-main {
    padding: 50px 0;
  }
}
.site-footer .footer-main .footer-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .footer-main .footer-main-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .site-footer .footer-main .footer-main-inner {
    grid-template-columns: auto auto auto auto;
    gap: 40px;
  }
}
.site-footer .footer-main .footer-main-inner .footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  width: 150px;
}
@media (min-width: 1024px) {
  .site-footer .footer-main .footer-main-inner .footer-brand .footer-logo {
    width: 165px;
  }
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-tagline {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #67666c;
  max-width: 330px;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social .footer-social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 27px;
  height: 27px;
  color: #67666c;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social .footer-social-link svg {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social .footer-social-link:hover, .site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social .footer-social-link:focus-visible {
  color: #f84525;
}
.site-footer .footer-main .footer-main-inner .footer-brand .footer-brand__social .footer-social-link:focus-visible {
  outline: 2px solid #f84525;
  outline-offset: 3px;
}
.site-footer .footer-main .footer-main-inner .footer-nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
}
@media (min-width: 1024px) {
  .site-footer .footer-main .footer-main-inner .footer-nav-col {
    gap: 10px;
  }
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #67666c;
}
@media (min-width: 768px) {
  .site-footer .footer-main .footer-main-inner .footer-nav-col__title {
    font-size: 16px;
    line-height: 1.2;
  }
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__list li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #f9f9f9;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-footer .footer-main .footer-main-inner .footer-nav-col__list li a {
    font-size: 18px;
    line-height: 1.5;
  }
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__list li a:hover {
  color: #f84525;
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__item--with-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.site-footer .footer-main .footer-main-inner .footer-nav-col__item--with-badge .footer-badge {
  color: #f9f9f9;
  background-color: #f84525;
  -webkit-text-fill-color: #f9f9f9;
  padding: 4px 5px;
  line-height: 1;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  grid-column: 1/-1;
}
@media (min-width: 1100px) {
  .site-footer .footer-main .footer-main-inner .footer-newsletter {
    grid-column: auto;
  }
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #f5f5f6;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter form {
  width: 100%;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 480px) {
  .site-footer .footer-main .footer-main-inner .footer-newsletter__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 8px;
  }
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input {
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #f9f9f9;
  background: transparent;
  border: 1px solid #2c2e30;
  border-radius: 60px;
  -webkit-box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
          box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  outline: none;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input::-webkit-input-placeholder {
  color: #85888e;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input::-moz-placeholder {
  color: #85888e;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input:-ms-input-placeholder {
  color: #85888e;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input::-ms-input-placeholder {
  color: #85888e;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input::placeholder {
  color: #85888e;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__input:focus-visible {
  border-color: rgba(255, 255, 255, 0.25);
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #f9f9f9;
  background-color: #f84525;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
          box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  -webkit-transition: -webkit-filter 0.15s ease, -webkit-transform 0.1s ease;
  transition: -webkit-filter 0.15s ease, -webkit-transform 0.1s ease;
  transition: filter 0.15s ease, transform 0.1s ease;
  transition: filter 0.15s ease, transform 0.1s ease, -webkit-filter 0.15s ease, -webkit-transform 0.1s ease;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__submit:hover {
  -webkit-filter: brightness(1.06);
          filter: brightness(1.06);
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__submit:active {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}
.site-footer .footer-main .footer-main-inner .footer-newsletter__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter .newsletter-form .newsletter-form__feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}
.site-footer .footer-main .footer-main-inner .footer-newsletter .newsletter-form .newsletter-form__feedback.success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.site-footer .footer-main .footer-main-inner .footer-newsletter .newsletter-form .newsletter-form__feedback.error {
  background-color: rgba(248, 69, 37, 0.15);
  color: #f84525;
  border: 1px solid rgba(248, 69, 37, 0.3);
}
.site-footer .footer-bottom {
  border-top: 1px solid #333741;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .site-footer .footer-bottom {
    padding: 30px 0;
  }
}
.site-footer .footer-bottom .footer-bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom .footer-bottom-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px 20px;
  }
}
.site-footer .footer-bottom .footer-bottom-inner .footer-copyright {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #67666c;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-legal .footer-legal-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #67666c;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-legal .footer-legal-link:hover {
  color: #f9f9f9;
}
.site-footer .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@property --draw-circle-start {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@property --draw-circle-end {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.home {
  position: relative;
}
.home .hero {
  color: #f9f9f9;
  height: calc(100dvh - 76px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .home .hero {
    height: calc(100dvh - 76px);
  }
}
@media (max-width: 767px) {
  .home .hero {
    overflow-x: hidden;
    height: calc(100svh - 76px);
  }
}
@media (min-width: 768px) {
  .home .hero {
    height: calc(100dvh - 100px);
  }
}
@media (min-width: 1300px) {
  .home .hero {
    height: calc(100dvh - 120px);
  }
}
.home .hero .hero-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
  position: relative;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (min-width: 1024px) {
  .home .hero .hero-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home .hero .hero-inner .hero-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .home .hero .hero-inner .hero-content {
    margin-top: 0;
  }
}
.home .hero .hero-inner .hero-content .hero-title {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}
@media (min-width: 390px) {
  .home .hero .hero-inner .hero-content .hero-title {
    font-size: 32px;
  }
}
@media (min-width: 430px) {
  .home .hero .hero-inner .hero-content .hero-title {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .home .hero .hero-inner .hero-content .hero-title {
    font-size: 54px;
  }
}
.home .hero .hero-inner .hero-content .hero-title mark {
  color: #67666c;
  background-color: transparent;
}
.home .hero .hero-inner .hero-content .hero-title .indent {
  display: inline-block;
  margin-left: 110px;
}
.home .hero .hero-inner .hero-content .see-our-cases-btn {
  -ms-flex-item-align: center;
      align-self: center;
  display: none;
}
@media (min-width: 1024px) {
  .home .hero .hero-inner .hero-content .see-our-cases-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home .hero .hero-inner .hero-content .see-our-cases-btn mark {
  font-size: 24px;
  font-weight: 300;
  color: #f84525;
  background-color: transparent;
}
.home .hero .hero-bg-elements {
  position: absolute;
  top: 0;
  right: 50px;
  pointer-events: none;
  height: 100dvh;
  width: 100svh;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  margin-top: -76px;
}
@media (min-width: 480px) {
  .home .hero .hero-bg-elements {
    margin-top: -80px;
  }
}
@media (min-width: 1300px) {
  .home .hero .hero-bg-elements {
    margin-top: -120px;
  }
}
@media (max-width: 767px) {
  .home .hero .hero-bg-elements {
    left: 0;
    right: auto;
    width: 100%;
    max-width: 100dvw;
    height: 100svh;
  }
}
.home .hero .hero-bg-elements .logo-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 150dvh;
  width: auto;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  -webkit-animation: revealLogo 0.3s ease-in 0.75s forwards;
          animation: revealLogo 0.3s ease-in 0.75s forwards;
  z-index: -3;
  opacity: 0.7;
}
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll(root)) {
    .home .hero .hero-bg-elements .logo-bg {
      -webkit-animation: revealLogo 0.3s ease-in 0.75s forwards, logoParallaxDesktop linear both;
              animation: revealLogo 0.3s ease-in 0.75s forwards, logoParallaxDesktop linear both;
      animation-timeline: auto, scroll(root);
      animation-range: normal, 0% 100%;
    }
  }
}
@media (max-width: 767px) {
  .home .hero .hero-bg-elements .logo-bg {
    left: 0;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    bottom: 130px;
    height: auto;
    width: 1200px;
    overflow: visible;
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll(root)) {
    .home .hero .hero-bg-elements .logo-bg {
      -webkit-animation: revealLogo 0.3s ease-in 0.75s forwards, logoParallaxMobile linear both;
              animation: revealLogo 0.3s ease-in 0.75s forwards, logoParallaxMobile linear both;
      animation-timeline: auto, scroll(root);
      animation-range: normal, 0% 100%;
    }
  }
}
.home .hero .hero-bg-elements .logo-bg .logo-bg__svg--desktop {
  display: block;
  height: 100%;
}
@media (max-width: 767px) {
  .home .hero .hero-bg-elements .logo-bg .logo-bg__svg--desktop {
    display: none;
  }
}
.home .hero .hero-bg-elements .logo-bg .logo-bg__svg--desktop svg {
  height: 100%;
  width: auto;
}
.home .hero .hero-bg-elements .logo-bg .logo-bg__svg--mobile {
  display: none;
}
@media (max-width: 767px) {
  .home .hero .hero-bg-elements .logo-bg .logo-bg__svg--mobile {
    display: block;
  }
}
.home .hero .hero-bg-elements .logo-bg .logo-bg__svg--mobile svg {
  width: 100%;
  height: auto;
}
.home .hero .hero-bg-elements .logo-bg svg {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .hero .hero-bg-elements .logo-bg svg path,
.home .hero .hero-bg-elements .logo-bg svg circle {
  fill: #272628;
}
.home .hero .hero-bg-elements .draw-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -180px;
  margin-top: -120px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: calc(100dvh + 180px);
  width: calc(100dvh + 180px);
  pointer-events: none;
  z-index: -1;
  -webkit-animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
          animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.home .hero .hero-bg-elements .draw-circle__ring {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 50%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  --draw-circle-start: 0deg;
  --draw-circle-end: 0deg;
  background: conic-gradient(from 0deg, transparent 0deg, transparent var(--draw-circle-start), #3f3c40 var(--draw-circle-start), #3f3c40 var(--draw-circle-end), transparent var(--draw-circle-end));
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-animation: drawCircleRingFillEmpty 16s linear 1.2s infinite;
          animation: drawCircleRingFillEmpty 16s linear 1.2s infinite;
}
.home .hero .hero-bg-elements .c-plus {
  position: absolute;
  bottom: 20px;
  left: 20px;
  height: auto;
  width: 60px;
  opacity: 0;
  -webkit-animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
          animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@media (min-width: 1024px) {
  .home .hero .hero-bg-elements .c-plus {
    left: 150px;
  }
}
.home .hero .hero-bg-elements .c-plus-2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  height: auto;
  width: 60px;
  z-index: 2;
  opacity: 0;
  -webkit-animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
          animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@media (min-width: 1024px) {
  .home .hero .hero-bg-elements .c-plus-2 {
    right: 180px;
    top: 250px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.home .hero .realized-projects {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.home .hero .realized-projects .realized-projects-text {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  color: #67666c;
}
.home .hero .scroll-down {
  position: fixed;
  bottom: 20px;
  left: 50px;
  z-index: 2;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
          animation: blinkAndGlow 3s ease-in-out 0.3s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  display: none;
}
@media (min-width: 1600px) {
  .home .hero .scroll-down {
    display: block;
  }
}
.home .hero .scroll-down .scroll-down-text {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  color: #f9f9f9;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.home .hero .scroll-down .scroll-down-text::before {
  content: "";
  width: 1px;
  height: 100px;
  background-color: #f84525;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: scrollDown 4s ease-in-out infinite;
          animation: scrollDown 4s ease-in-out infinite;
}
.home .our-cases {
  padding: 40px 0;
  position: relative;
  scroll-margin-top: 100px;
}
@media (min-width: 1025px) {
  .home .our-cases {
    padding: 60px 0;
  }
}
.home .our-cases .our-cases-inner {
  position: relative;
  z-index: 1;
}
.home .our-cases .our-cases-inner .section-header {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .section-header {
    margin-bottom: 30px;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured {
  margin-bottom: 48px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured {
    margin-bottom: 60px;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  border-bottom: 1px solid #67666c;
  padding-bottom: 20px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__title {
  margin: 0;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  color: #f9f9f9;
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #67666c;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__description {
    font-size: 18px;
    line-height: 1.5;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__meta {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #e0e0e0;
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__meta {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__info .our-cases-featured__meta .our-cases-featured__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #67666c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec {
  margin: 0;
  width: 100%;
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec .our-cases-featured__spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec .our-cases-featured__spec-row:last-child {
  border-bottom: none;
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec .our-cases-featured__spec-row .our-cases-featured__spec-label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888b8f;
}
.home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec .our-cases-featured__spec-row .our-cases-featured__spec-value {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #f9f9f9;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-featured .our-cases-featured__spec .our-cases-featured__spec-row .our-cases-featured__spec-value {
    font-size: 18px;
    line-height: 1.5;
  }
}
.home .our-cases .our-cases-inner .our-cases-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  margin-right: -15px;
  padding-right: 15px;
  margin-left: -15px;
  scroll-padding-left: 15px;
}
.home .our-cases .our-cases-inner .our-cases-list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .home .our-cases .our-cases-inner .our-cases-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 0;
    margin-bottom: 60px;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    overflow-x: visible;
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
    scroll-padding-left: 0;
  }
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 15px;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  width: calc(100% - 40px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #67666c;
  border-radius: 10px;
  scroll-snap-align: start;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card:first-child {
  margin-left: 15px;
}
@media (min-width: 768px) {
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card {
    padding: 0 25px;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border: none;
    border-right: 1px solid #67666c;
    border-radius: 0;
  }
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card:first-child {
    margin-left: 0;
  }
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card:nth-child(1), .home .our-cases .our-cases-inner .our-cases-list .our-cases-card:nth-child(4) {
    padding-left: 0;
  }
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card:nth-child(3n) {
    border-right: none;
    padding-right: 0;
  }
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__title {
  margin: 0 0 2px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #f9f9f9;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (min-width: 1025px) {
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__title a {
  color: inherit;
  text-decoration: none;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__meta {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  line-height: 18px;
  color: #9c9c9c;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__meta .our-cases-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #67666c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__description {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #67666c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__description a {
  color: inherit;
  text-decoration: none;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__tags {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  line-height: 18px;
  color: #e0e0e0;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.home .our-cases .our-cases-inner .our-cases-list .our-cases-card .our-cases-card__tags .our-cases-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #67666c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .home .our-cases .our-cases-inner .our-cases-list .our-cases-card:hover .our-cases-card__description {
    color: #f9f9f9;
  }
}
@media (hover: hover) {
  .home .our-cases .our-cases-inner .our-cases-list:has(.our-cases-card:hover) .our-cases-card:not(:hover) .our-cases-card__title,
  .home .our-cases .our-cases-inner .our-cases-list:has(.our-cases-card:hover) .our-cases-card:not(:hover) .our-cases-card__description,
  .home .our-cases .our-cases-inner .our-cases-list:has(.our-cases-card:hover) .our-cases-card:not(:hover) .our-cases-card__tags {
    color: #67666c;
  }
}
.home .our-cases .our-cases-inner .indicator-dots {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: none;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .home .our-cases .our-cases-inner .indicator-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home .our-cases .our-cases-inner .indicator-dots .indicator-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #67666c;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.home .our-cases .our-cases-inner .indicator-dots .indicator-dot.active {
  background-color: #e0e0e0;
}
.home .our-cases .our-cases-inner .indicator-dots .indicator-dot:focus-visible {
  background-color: #e0e0e0;
}
.home .our-cases .our-cases-inner .see-all-projects-btn {
  margin: 0 auto;
}
.home .development-process {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1025px) {
  .home .development-process {
    padding: 60px 0;
  }
}
.home .development-process .development-process-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 1024px) {
  .home .development-process .development-process-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.home .development-process .development-process-inner .development-process-list {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  --line-progress: 0;
}
.home .development-process .development-process-inner .development-process-list .development-process-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
.home .development-process .development-process-inner .development-process-list .development-process-line .development-process-line__track {
  position: absolute;
  inset: 0;
  background-color: #67666c;
}
.home .development-process .development-process-inner .development-process-list .development-process-line .development-process-line__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f84525;
  -webkit-transform: scaleY(var(--line-progress, 0));
          transform: scaleY(var(--line-progress, 0));
  -webkit-transform-origin: top center;
          transform-origin: top center;
  will-change: transform;
}
.home .development-process .development-process-inner .development-process-list .development-process-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  position: relative;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .home .development-process .development-process-inner .development-process-list .development-process-item {
    gap: 20px;
    padding-bottom: 35px;
  }
}
.home .development-process .development-process-inner .development-process-list .development-process-item:last-of-type {
  padding-bottom: 0;
}
.home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-number {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  color: #67666c;
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-number {
    font-size: 26px;
    line-height: 1.2;
  }
}
.home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #1f1e1d;
  z-index: -2;
  border-radius: 50%;
}
.home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-title-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-title-desc .development-process-item-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #67666c;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-title-desc .development-process-item-title {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 3px;
  }
}
.home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-title-desc .development-process-item-desc {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #67666c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .home .development-process .development-process-inner .development-process-list .development-process-item .development-process-item-title-desc .development-process-item-desc {
    font-size: 18px;
    line-height: 1.5;
  }
}
.home .development-process .development-process-inner .development-process-list .development-process-item.active .development-process-item-number {
  color: #f9f9f9;
}
.home .development-process .development-process-inner .development-process-list .development-process-item.active .development-process-item-title {
  color: #f9f9f9;
}
.home .development-process .development-process-inner .development-process-list .development-process-item.active .development-process-item-desc {
  color: #e0e0e0;
}
.home .our-services {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1025px) {
  .home .our-services {
    padding: 60px 0;
  }
}
.home .our-services::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80%;
  height: 90%;
  background: radial-gradient(circle, rgba(248, 69, 37, 0.25) 0%, rgba(248, 69, 37, 0.12) 35%, rgba(248, 69, 37, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}
.home .our-services .our-services-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.home .our-services .our-services-inner .our-services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
.home .our-services .our-services-inner .our-services-row {
  display: grid;
  gap: 16px;
  width: 100%;
}
.home .our-services .our-services-inner .our-services-row--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .home .our-services .our-services-inner .our-services-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home .our-services .our-services-inner .our-services-row--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .home .our-services .our-services-inner .our-services-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home .our-services .our-services-inner .our-services-row--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home .our-services .our-services-inner .our-services-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(32px, 8vw, 80px);
  margin: 0;
  padding: 16px;
  border: 1px solid #67666c;
  border-radius: 24px;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home .our-services .our-services-inner .our-services-card__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.home .our-services .our-services-inner .our-services-card__icon img {
  display: block;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .our-services .our-services-inner .our-services-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 100%;
}
.home .our-services .our-services-inner .our-services-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #f9f9f9;
  letter-spacing: -0.026em;
}
.home .our-services .our-services-inner .our-services-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #67666c;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (min-width: 1024px) {
  .home .our-services .our-services-inner .our-services-card__text {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .home .our-services .our-services-inner .our-services-card:hover .our-services-card__text {
    color: #e0e0e0;
  }
  .home .our-services .our-services-inner .our-services-card:hover {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}
.home .our-partners {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1025px) {
  .home .our-partners {
    padding: 100px 0;
  }
}
.home .our-partners .container {
  max-width: 100%;
}
@media (min-width: 1681px) {
  .home .our-partners .container {
    max-width: 1800px;
  }
}
.home .our-partners .our-partners-list {
  width: 100%;
  overflow: hidden;
  position: relative;
  --p-fade: clamp(100px, 18vw, 300px);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(rgba(0, 0, 0, 0.06)), color-stop(rgba(0, 0, 0, 0.18)), color-stop(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.65)), color-stop(rgba(0, 0, 0, 0.88)), color-stop(#000), color-stop(#000), color-stop(rgba(0, 0, 0, 0.88)), color-stop(rgba(0, 0, 0, 0.65)), color-stop(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.18)), color-stop(rgba(0, 0, 0, 0.06)), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.06) calc(var(--p-fade) * 0.12), rgba(0, 0, 0, 0.18) calc(var(--p-fade) * 0.32), rgba(0, 0, 0, 0.4) calc(var(--p-fade) * 0.52), rgba(0, 0, 0, 0.65) calc(var(--p-fade) * 0.72), rgba(0, 0, 0, 0.88) calc(var(--p-fade) * 0.9), #000 var(--p-fade), #000 calc(100% - var(--p-fade)), rgba(0, 0, 0, 0.88) calc(100% - var(--p-fade) * 0.9), rgba(0, 0, 0, 0.65) calc(100% - var(--p-fade) * 0.72), rgba(0, 0, 0, 0.4) calc(100% - var(--p-fade) * 0.52), rgba(0, 0, 0, 0.18) calc(100% - var(--p-fade) * 0.32), rgba(0, 0, 0, 0.06) calc(100% - var(--p-fade) * 0.12), transparent 100%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(rgba(0, 0, 0, 0.06)), color-stop(rgba(0, 0, 0, 0.18)), color-stop(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.65)), color-stop(rgba(0, 0, 0, 0.88)), color-stop(#000), color-stop(#000), color-stop(rgba(0, 0, 0, 0.88)), color-stop(rgba(0, 0, 0, 0.65)), color-stop(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.18)), color-stop(rgba(0, 0, 0, 0.06)), to(transparent));
  mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.06) calc(var(--p-fade) * 0.12), rgba(0, 0, 0, 0.18) calc(var(--p-fade) * 0.32), rgba(0, 0, 0, 0.4) calc(var(--p-fade) * 0.52), rgba(0, 0, 0, 0.65) calc(var(--p-fade) * 0.72), rgba(0, 0, 0, 0.88) calc(var(--p-fade) * 0.9), #000 var(--p-fade), #000 calc(100% - var(--p-fade)), rgba(0, 0, 0, 0.88) calc(100% - var(--p-fade) * 0.9), rgba(0, 0, 0, 0.65) calc(100% - var(--p-fade) * 0.72), rgba(0, 0, 0, 0.4) calc(100% - var(--p-fade) * 0.52), rgba(0, 0, 0, 0.18) calc(100% - var(--p-fade) * 0.32), rgba(0, 0, 0, 0.06) calc(100% - var(--p-fade) * 0.12), transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.home .our-partners .our-partners-list .our-partners-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.home .our-partners .our-partners-list .our-partners-track .our-partners-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
.home .our-partners .our-partners-list .our-partners-track .our-partners-item img {
  height: 60px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.8;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.home .ready-to-start {
  padding: 40px 0 70px;
  position: relative;
}
@media (min-width: 1025px) {
  .home .ready-to-start {
    padding: 60px 0 100px;
  }
}
.home .ready-to-start .ready-to-start-inner {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media (min-width: 1024px) {
  .home .ready-to-start .ready-to-start-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .home .ready-to-start .ready-to-start-inner .ready-to-start-content {
    padding-right: 80px;
  }
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail {
  margin: 0;
  padding: 0;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__label {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #67666c;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__value {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #f9f9f9;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__value--second {
  margin-top: 6px;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__value a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (hover: hover) {
  .home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__value a:hover {
    color: #f84525;
  }
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__hours-line {
  color: #f9f9f9;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-details .ready-to-start-detail__hours-time {
  color: #67666c;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-content .ready-to-start-divider {
  height: 1px;
  width: 100%;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap {
  min-width: 0;
  width: 100%;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 24px;
  border: 1px solid #67666c;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__label {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #f9f9f9;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input {
  width: 100%;
  margin: 0;
  padding: 12px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #f9f9f9;
  background-color: #1f1e1d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  outline: none;
  position: relative;
  z-index: 1;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input::-webkit-input-placeholder {
  color: rgba(208, 213, 221, 0.6);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input::-moz-placeholder {
  color: rgba(208, 213, 221, 0.6);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input:-ms-input-placeholder {
  color: rgba(208, 213, 221, 0.6);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input::-ms-input-placeholder {
  color: rgba(208, 213, 221, 0.6);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input::placeholder {
  color: rgba(208, 213, 221, 0.6);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-field__input--textarea {
  min-height: 129px;
  resize: vertical;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #f9f9f9;
  background-color: #f84525;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
          box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  -webkit-transition: background-color 0.15s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.15s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.15s ease, transform 0.1s ease;
  transition: background-color 0.15s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
}
@media (hover: hover) {
  .home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-submit:hover {
    -webkit-filter: brightness(1.06);
            filter: brightness(1.06);
  }
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-submit:active {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .ready-to-start-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .form-message {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .form-message.success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.home .ready-to-start .ready-to-start-inner .ready-to-start-form-wrap .ready-to-start-form .form-message.error {
  background-color: rgba(248, 69, 37, 0.15);
  color: #f84525;
  border: 1px solid rgba(248, 69, 37, 0.3);
}
.home .about {
  height: 1000dvh;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.01% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.01% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@-webkit-keyframes blinkAndGlow {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  12% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinkAndGlow {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  12% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes drawCircleRingFillEmpty {
  0% {
    --draw-circle-start: 0deg;
    --draw-circle-end: 0deg;
  }
  50% {
    --draw-circle-start: 0deg;
    --draw-circle-end: 360deg;
  }
  100% {
    --draw-circle-start: 360deg;
    --draw-circle-end: 360deg;
  }
}
@keyframes drawCircleRingFillEmpty {
  0% {
    --draw-circle-start: 0deg;
    --draw-circle-end: 0deg;
  }
  50% {
    --draw-circle-start: 0deg;
    --draw-circle-end: 360deg;
  }
  100% {
    --draw-circle-start: 360deg;
    --draw-circle-end: 360deg;
  }
}
@-webkit-keyframes revealLogo {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealLogo {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes logoParallaxDesktop {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  to {
    -webkit-transform: translate(-50%, calc(-50% - 1800px));
            transform: translate(-50%, calc(-50% - 1800px));
  }
}
@keyframes logoParallaxDesktop {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  to {
    -webkit-transform: translate(-50%, calc(-50% - 1800px));
            transform: translate(-50%, calc(-50% - 1800px));
  }
}
@-webkit-keyframes logoParallaxMobile {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-1200px);
            transform: translateX(-1200px);
  }
}
@keyframes logoParallaxMobile {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-1200px);
            transform: translateX(-1200px);
  }
}
.page-template-lets-talk .lets-talk {
  background-color: #1f1e1d;
  color: #f9f9f9;
  min-height: calc(100dvh - 134px);
  padding: 40px 0;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .page-template-lets-talk .lets-talk {
    min-height: calc(100dvh - 181px);
    padding: 80px 0;
  }
}
.page-template-lets-talk .lets-talk-inner {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-template-lets-talk .lets-talk-inner {
    max-width: 650px;
  }
}
.page-template-lets-talk .lets-talk-header {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-template-lets-talk .lets-talk-header {
    margin-bottom: 40px;
  }
}
.page-template-lets-talk .lets-talk-header .coming-soon-message {
  position: relative;
  padding-left: 16px;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk-header .coming-soon-message {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .page-template-lets-talk .lets-talk-header .coming-soon-message {
    margin-bottom: 40px;
  }
}
.page-template-lets-talk .lets-talk-header .coming-soon-message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #f84525;
}
.page-template-lets-talk .lets-talk-header .coming-soon-message .coming-soon-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f84525;
  margin-bottom: 8px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk-header .coming-soon-message .coming-soon-label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.page-template-lets-talk .lets-talk-header .coming-soon-message p {
  font-size: 14px;
  line-height: 1.6;
  color: #9c9c9c;
  margin: 0;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk-header .coming-soon-message p {
    font-size: 16px;
  }
}
.page-template-lets-talk .lets-talk-header h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #f9f9f9;
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .page-template-lets-talk .lets-talk-header h1 {
    font-size: 55px;
  }
}
.page-template-lets-talk .lets-talk-header .lets-talk-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #9c9c9c;
  margin: 0;
}
@media (min-width: 480px) {
  .page-template-lets-talk .lets-talk-header .lets-talk-subtitle {
    font-size: 16px;
  }
}
.page-template-lets-talk .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-template-lets-talk .contact-form {
    gap: 20px;
  }
}
.page-template-lets-talk .contact-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 600px) {
  .page-template-lets-talk .contact-form .form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .page-template-lets-talk .contact-form .form-row .form-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.page-template-lets-talk .contact-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .contact-form .form-group {
    gap: 8px;
  }
}
.page-template-lets-talk .contact-form .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #9c9c9c;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .contact-form .form-group label {
    font-size: 14px;
  }
}
.page-template-lets-talk .contact-form .form-group input,
.page-template-lets-talk .contact-form .form-group textarea {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  color: #f9f9f9;
  background-color: rgb(52.08, 50.4, 48.72);
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  font-size: 16px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .contact-form .form-group input,
  .page-template-lets-talk .contact-form .form-group textarea {
    padding: 16px 20px;
  }
}
.page-template-lets-talk .contact-form .form-group input::-webkit-input-placeholder, .page-template-lets-talk .contact-form .form-group textarea::-webkit-input-placeholder {
  color: rgb(117.75, 117.75, 117.75);
}
.page-template-lets-talk .contact-form .form-group input::-moz-placeholder, .page-template-lets-talk .contact-form .form-group textarea::-moz-placeholder {
  color: rgb(117.75, 117.75, 117.75);
}
.page-template-lets-talk .contact-form .form-group input:-ms-input-placeholder, .page-template-lets-talk .contact-form .form-group textarea:-ms-input-placeholder {
  color: rgb(117.75, 117.75, 117.75);
}
.page-template-lets-talk .contact-form .form-group input::-ms-input-placeholder, .page-template-lets-talk .contact-form .form-group textarea::-ms-input-placeholder {
  color: rgb(117.75, 117.75, 117.75);
}
.page-template-lets-talk .contact-form .form-group input::placeholder,
.page-template-lets-talk .contact-form .form-group textarea::placeholder {
  color: rgb(117.75, 117.75, 117.75);
}
.page-template-lets-talk .contact-form .form-group input:hover,
.page-template-lets-talk .contact-form .form-group textarea:hover {
  background-color: rgb(57.35, 55.5, 53.65);
}
.page-template-lets-talk .contact-form .form-group input:focus,
.page-template-lets-talk .contact-form .form-group textarea:focus {
  background-color: rgb(62.62, 60.6, 58.58);
  border-color: #f84525;
}
.page-template-lets-talk .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
@media (min-width: 480px) {
  .page-template-lets-talk .contact-form .form-group textarea {
    min-height: 150px;
  }
}
.page-template-lets-talk .contact-form button {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  color: #1f1e1d;
  background-color: #f9f9f9;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.15s ease, color 0.15s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.2s ease;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
}
@media (min-width: 480px) {
  .page-template-lets-talk .contact-form button {
    width: auto;
    padding: 18px 40px;
    font-size: 16px;
  }
}
.page-template-lets-talk .contact-form button:hover {
  background-color: #f84525;
  color: #f9f9f9;
}
.page-template-lets-talk .contact-form button:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.page-template-lets-talk .contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.page-template-lets-talk .contact-form .form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14px;
}
.page-template-lets-talk .contact-form .form-message.success {
  background-color: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.page-template-lets-talk .contact-form .form-message.error {
  background-color: rgba(248, 69, 37, 0.15);
  color: #f84525;
  border: 1px solid rgba(248, 69, 37, 0.3);
}
.page-template-lets-talk .back-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 13px;
  color: #9c9c9c;
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (min-width: 480px) {
  .page-template-lets-talk .back-link {
    margin-top: 40px;
    font-size: 14px;
  }
}
.page-template-lets-talk .back-link:hover {
  color: #f84525;
}

.error-404 {
  min-height: calc(100dvh - 134px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1f1e1d;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .error-404 {
    min-height: calc(100dvh - 181px);
  }
}
.error-404 .error-404-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .error-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media (min-width: 480px) {
  .error-404 .error-code {
    gap: 12px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .error-404 .error-code {
    gap: 16px;
    margin-bottom: 60px;
  }
}
.error-404 .error-code .digit {
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 800;
  line-height: 1;
  color: #f9f9f9;
  text-shadow: 0 0 60px rgba(248, 69, 37, 0.3);
  -webkit-animation: digitFloat 3s ease-in-out infinite;
          animation: digitFloat 3s ease-in-out infinite;
}
.error-404 .error-code .digit:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.error-404 .error-code .digit:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.error-404 .error-code .digit:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.error-404 .error-code .digit.zero {
  color: #f84525;
  text-shadow: 0 0 40px rgba(248, 69, 37, 0.5), 0 0 80px rgba(248, 69, 37, 0.3);
}
@-webkit-keyframes digitFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes digitFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.error-404 .error-content h1 {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  color: #f9f9f9;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .error-404 .error-content h1 {
    margin-bottom: 20px;
  }
}
.error-404 .error-content p {
  font-size: clamp(14px, 3vw, 16px);
  color: #9c9c9c;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .error-404 .error-content p {
    margin-bottom: 40px;
  }
}
.error-404 .back-home-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1e1d;
  background-color: #f9f9f9;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 480px) {
  .error-404 .back-home-btn {
    padding: 18px 40px;
    font-size: 16px;
  }
}
.error-404 .back-home-btn:hover {
  background-color: #f84525;
  color: #f9f9f9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 30px rgba(248, 69, 37, 0.3);
          box-shadow: 0 10px 30px rgba(248, 69, 37, 0.3);
}
.error-404 .back-home-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.error-404 .back-home-btn span {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.error-404 .back-home-btn:hover span {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.error-404:hover .error-code .digit {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}/*# sourceMappingURL=style.css.map */