:root {
  /* === TYPOGRAPHY === */
  --font-family-primary: Inter, sans-serif;
  --font-family-secondary: sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.2;
  --line-height-tight: 1.08;
  /* Font weight scale */
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* Font size scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 2.5rem;
  --font-size-6xl: 3rem;
  /* Responsive font sizing */
  --font-scale-unit: 16;
  --font-scale-container-ideal: 1440;
  --font-scale-container-min: 992px;
  --font-scale-container-max: 1920px;
  --font-scale-container: clamp(var(--font-scale-container-min), 100vw, var(--font-scale-container-max));
  --font-size-responsive: calc(var(--font-scale-container) / (var(--font-scale-container-ideal) / var(--font-scale-unit)));
  /* === COLORS === */
  /* Base colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-transparent: transparent;
  /* Gray scale */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  /* Background colors */
  --color-bg-primary: #fff;
  --color-bg-secondary: #f8f8f9;
  --color-bg-tertiary: var(--color-gray-100);
  --color-bg-overlay: rgba(0, 0, 0, 0.5);
  /* Text colors */
  --color-text-primary: #000000;
  --color-text-secondary: #575757;
  --color-text-tertiary: var(--color-gray-500);
  --color-text-inverse: var(--color-white);
  --color-text-placeholder: #666666;
  /* Accent colors */
  --color-accent-primary: #FF6100;
  --color-accent-secondary: #0066ff;
  --color-accent-success: #10b981;
  --color-accent-warning: #f59e0b;
  --color-accent-error: #ef4444;
  /* Border colors */
  --color-border-light: #e6e6e7;
  --color-border-medium: var(--color-gray-300);
  --color-border-dark: var(--color-gray-600);
  --color-border-focus: var(--color-accent-primary);
  /* === LAYOUT === */
  --container-width-max: 1750px;
  --container-width-content: 1200px;
  --container-padding-base: 2rem;
  /* Spacing system (8px base) */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  /* Legacy spacing (for backward compatibility) */
  --space-xs: var(--space-2);
  --space-sm: var(--space-4);
  --space-md: var(--space-8);
  --space-lg: var(--space-16);
  --space-xl: var(--space-24);
  /* Gap system */
  --gap-base: var(--space-8);
  --gap-small: var(--space-4);
  --gap-large: var(--space-12);
  --section-padding: calc(var(--space-8) + (var(--gap-base) * 2));
  /* Border radius */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  /* === ANIMATIONS === */
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-primary: cubic-bezier(0.65, 0.05, 0, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 150ms;
  --duration-medium: 300ms;
  --duration-slow: 735ms;
  --duration-slower: 1000ms;
  --transition-default: all var(--duration-medium) var(--ease-out);
  --transition-primary: var(--duration-slow) var(--ease-primary);
  --transition-colors: color var(--duration-medium) var(--ease-out), background-color var(--duration-medium) var(--ease-out), border-color var(--duration-medium) var(--ease-out);
  /* === Z-INDEX SCALE === */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
  /* === BREAKPOINTS === */
  --breakpoint-xs: 475px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  /* Legacy breakpoints */
  --breakpoint-mobile-portrait: 479px;
  --breakpoint-mobile-landscape: 767px;
  --breakpoint-tablet: 991px;
  --breakpoint-desktop-small: 1280px;
  /* === GRAIN EFFECT === */
  --grain-opacity: 0.50;
  --grain-z-index: 45;
  --grain-size: 300px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
@media screen and (max-width: 1920px) {
  :root {
    --container-padding-base: var(--space-12);
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --container-padding-base: var(--space-8);
  }
}
@media screen and (max-width: 991px) {
  :root {
    --font-scale-container-ideal: 834px;
    --font-scale-container-min: 768px;
    --font-scale-container-max: 991px;
    --container-padding-base: var(--space-8);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --font-scale-container-ideal: 390px;
    --font-scale-container-min: 480px;
    --font-scale-container-max: 767px;
    --container-padding-base: var(--space-4);
    --section-padding: calc(var(--space-4) + var(--gap-base));
  }
}
@media screen and (max-width: 479px) {
  :root {
    --font-scale-container-ideal: 390px;
    --font-scale-container-min: 320px;
    --font-scale-container-max: 479px;
    --container-padding-base: var(--space-4);
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

::placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

::-moz-selection {
  background-color: var(--color-accent-primary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-accent-primary);
  color: var(--color-white);
}

input, textarea, select {
  outline: none;
  -webkit-transition: var(--transition-colors);
  transition: var(--transition-colors);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-black);
}
input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
  border-color: var(--color-black);
}
input:required:valid, textarea:required:valid, select:required:valid {
  border-color: var(--color-accent-success);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  background-color: var(--color-bg-primary);
}

.container {
  max-width: var(--container-width-max);
  padding-left: var(--container-padding-base);
  padding-right: var(--container-padding-base);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.container-content {
  max-width: var(--container-width-content);
  padding-left: var(--container-padding-base);
  padding-right: var(--container-padding-base);
  margin: 0 auto;
  width: 100%;
}

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

html {
  scroll-behavior: smooth;
}

body ::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
} /* Chrome, Safari, Opera */
body {
  -ms-overflow-style: none;
} /* IE & Edge */
html {
  scrollbar-width: none;
} /* Firefox */
html,
body {
  -webkit-font-smoothing: antialiased;
}

svg {
  max-width: none;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style-type: none;
}

.menu-btn {
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  background-color: #191919;
  color: #fff;
  padding: 0.7rem 1rem;
  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: 1rem;
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.16));
}
.menu-btn .burger {
  position: relative;
}
.menu-btn .burger span {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  display: block;
  background-color: #fff;
  height: 1px;
  width: 24px;
}
.menu-btn .burger span:nth-child(2) {
  margin: 6px 0;
  width: 16px;
}

.border-btn {
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border: 1px solid var(--color-text-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  border-radius: 40px;
  cursor: pointer;
  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: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.border-btn:hover {
  background-color: #191919;
  color: var(--color-bg-primary);
}

.border-btn.white-btn {
  color: var(--color-bg-primary);
  border: 1px solid var(--color-bg-primary);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.01);
}
.border-btn.white-btn:hover {
  background-color: #fff;
  color: #191919;
}

.fill-btn {
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border: 1px solid var(--color-accent-primary);
  background-color: var(--color-accent-primary);
  color: var(--color-bg-primary);
  border-radius: 40px;
  cursor: pointer;
  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: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fill-btn:hover {
  -webkit-box-shadow: 0 2px 12px 0 rgba(255, 120, 38, 0.8);
          box-shadow: 0 2px 12px 0 rgba(255, 120, 38, 0.8);
  color: var(--color-bg-primary);
}

.fill-btn.black-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
}

.order-btn {
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--color-accent-primary);
  background-color: var(--color-accent-primary);
  color: var(--color-bg-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  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;
  cursor: pointer;
}
.order-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}
.order-btn:hover {
  -webkit-box-shadow: 0 2px 12px 0 rgba(255, 120, 38, 0.8);
          box-shadow: 0 2px 12px 0 rgba(255, 120, 38, 0.8);
}

.slide-btn {
  font-size: 1rem;
  color: var(--color-bg-primary);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.slide-btn svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slide-btn:hover {
  color: var(--color-accent-primary);
}

.compare-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  color: var(--color-text-primary);
  padding: 0.5rem 0rem;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.compare-btn svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.compare-btn:hover {
  color: var(--color-accent-primary);
}
.compare-btn:hover svg path {
  fill: var(--color-accent-primary);
}

.play-btn {
  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;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-bg-primary);
  background: rgba(33, 33, 33, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.play-btn:hover {
  background-color: var(--color-accent-primary);
}
.play-btn img {
  margin-left: 4px;
}

.input-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
.input-box .input-group {
  position: relative;
}
.input-box input {
  border: solid 1px #BABABA;
  background-color: var(--color-bg-primary);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--color-text-primary);
  -webkit-transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  padding: 0.8rem;
}
.input-box .user-label {
  position: absolute;
  left: 15px;
  bottom: 29px;
  color: #666;
  pointer-events: none;
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.input-box .input:focus, .input-box input:valid {
  outline: none;
  border: 1px solid var(--color-text-primary);
}
.input-box .input:focus ~ label, .input-box input:valid ~ label {
  -webkit-transform: translateY(-6px) scale(0.8);
      -ms-transform: translateY(-6px) scale(0.8);
          transform: translateY(-6px) scale(0.8);
  background-color: var(--color-bg-primary);
  padding: 0 0.5em;
  color: var(--color-text-primary);
  left: 0;
}

@media (max-width: 760px) {
  .menu-btn {
    padding: 1rem;
  }
}
footer {
  background-color: #171717;
}

.footer__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid #2C2C2C;
}
.footer__header .footer-logo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.footer__header .footer-logo .footer-logo-mobi {
  display: none;
}
.footer__header .footer-logo .footer-logo-desk {
  width: 300px;
}
.footer__header .footer-email {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
}
.footer__header .footer-email,
.footer__header .footer-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
}
.footer__header .footer-email .icon,
.footer__header .footer-phone .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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: #292929;
}

.footer__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 6rem;
  padding: 4rem 0 4rem;
}
.footer__body .footer__col:nth-child(7) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.footer__body .footer__col:nth-child(8) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
}
.footer__body .footer__col:nth-child(12) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
}
.footer__body .footer__col .footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__body .footer__col .footer__title h3 {
  font-size: 1rem;
  color: #757575;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__body .footer__col .footer__title img {
  display: none;
}
.footer__body .footer__col ul {
  padding-top: 1.5rem;
  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.4rem;
  opacity: 1 !important;
}
.footer__body .footer__col ul li a {
  font-size: 1rem;
  color: #b7b7b7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__body .footer__col ul li a:hover {
  color: var(--color-white);
}
.footer__body .footer__col p, .footer__body .footer__col a {
  color: #b7b7b7;
  line-height: 130%;
}
.footer__body .footer__col .footer__contact {
  margin-left: 1.5rem;
}
.footer__body .footer__col .footer__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__body .footer__col .footer__contact a span {
  font-size: 0.8rem;
  -ms-flex-item-align: flex;
      -ms-grid-row-align: flex;
      align-self: flex;
}
.footer__body .footer__col .footer__contact a svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  stroke: var(--color-white);
}
.footer__body .footer__col .footer__contact a:hover {
  color: var(--color-accent-primary);
}
.footer__body .footer__col .footer__contact a:hover svg path {
  stroke: var(--color-accent-primary);
}
.footer__body .footer__col .payment-details {
  font-size: 0.85rem;
}
.footer__body .footer__col .footer-loc,
.footer__body .footer__col .footer-fsc,
.footer__body .footer__col .footer-time {
  position: relative;
}
.footer__body .footer__col .footer-loc:before,
.footer__body .footer__col .footer-fsc:before,
.footer__body .footer__col .footer-time:before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 0;
  background-repeat: no-repeat;
}
.footer__body .footer__col .footer-loc {
  display: inline-block;
}
.footer__body .footer__col .footer-loc:before {
  background-image: url(../images/dist/icon/footer-loc.svg);
  width: 15px;
  height: 17px;
}
.footer__body .footer__col .footer-time:before {
  background-image: url(../images/dist/icon/footer-time.svg);
  width: 15px;
  height: 18px;
}
.footer__body .footer__col .footer-fsc:before {
  background-image: url(../images/dist/icon/fsc.svg);
  width: 39px;
  height: 48px;
  left: -3rem;
  top: -0.6rem;
}
.footer__body .footer__col .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
.footer__body .footer__col .footer__social a {
  width: 40px;
  height: 40px;
  background-color: #292929;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__body .footer__col .footer__social a svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__body .footer__col .footer__social a:hover {
  background-color: var(--color-accent-primary);
}
.footer__body .footer__col .footer__social a:hover svg path {
  fill: var(--color-white);
}
.footer__body .footer__col-logo .footer-logo-s,
.footer__body .footer__col-logo .mobile-contact,
.footer__body .footer__col-logo .footer-social {
  display: none;
}
.footer__body .col__wrap ul {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.footer__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-bottom: 1rem;
}
.footer__bottom p,
.footer__bottom a {
  font-weight: 300;
  font-size: 0.8rem;
  color: #b7b7b7;
}
.footer__bottom a {
  color: var(--color-white);
}
.footer__bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1080px) {
  .footer__header {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .footer__header .footer-logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .footer__header .footer-email {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
  }
  .footer__body {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
  }
  .footer__body .footer__col:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-left: 0;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact .footer-loc:before,
  .footer__body .footer__col:nth-child(5) .footer__contact .footer-time:before {
    content: none;
  }
  .footer__body .footer__col:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .footer__body .footer__col:nth-child(7) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .footer__body .footer__col:nth-child(8) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .footer__body .footer__col:nth-child(9) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
  }
  .footer__body .footer__col:nth-child(12) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
  }
  .footer__body .footer__col ul {
    padding-top: 1rem;
  }
  .footer__body .footer__col ul li a, .footer__body .footer__col ul li p {
    font-size: 0.9rem;
  }
}
@media (max-width: 840px) {
  .footer__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: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .footer__header .footer-logo .footer-logo-mobi {
    display: block;
  }
  .footer__header .footer-logo .footer-logo-desk {
    display: none;
  }
  .footer__header .footer-email,
  .footer__header .footer-phone {
    background-color: #292929;
    padding: 0 1rem 0 0.5rem;
    border-radius: 3rem;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .footer__body .footer__col ul li a,
  .footer__body .footer__col ul li p {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .footer__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 4rem 0 2rem;
  }
  .footer__body .footer__col:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .footer__body .footer__col:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .footer__body .footer__col:nth-child(2) .footer__title {
    border-bottom: none;
  }
  .footer__body .footer__col:nth-child(2).active {
    padding-bottom: 1rem;
  }
  .footer__body .footer__col:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .footer__body .footer__col:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .footer__body .footer__col:nth-child(7), .footer__body .footer__col:nth-child(12) {
    grid-column: auto;
    grid-row: auto;
  }
  .footer__body .footer__col:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/6;
    background-color: #1E1E1E;
    border-radius: 8px;
    padding: 1rem;
  }
  .footer__body .footer__col:nth-child(5) .footer__title {
    display: none;
  }
  .footer__body .footer__col:nth-child(5) ul {
    height: auto;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact {
    display: block;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact .footer-loc {
    padding-left: 24px;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact .footer-loc::before {
    content: "";
    background-image: url(../images/dist/icon/footer-loc.svg);
    width: 15px;
    height: 17px;
    left: 0px;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact li:nth-child(2) {
    padding: 1rem 0 0 24px;
  }
  .footer__body .footer__col:nth-child(5) .footer__contact li:nth-child(2) a {
    font-size: var(--font-size-sm);
  }
  .footer__body .footer__col:nth-child(5) .footer__contact li:nth-child(3) {
    display: none;
  }
  .footer__body .footer__col:nth-child(6) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/7;
    background-color: #1E1E1E;
    border-radius: 8px;
    padding: 1rem;
  }
  .footer__body .footer__col:nth-child(7) {
    display: none;
  }
  .footer__body .footer__col:nth-child(9), .footer__body .footer__col:nth-child(10), .footer__body .footer__col:nth-child(11), .footer__body .footer__col:nth-child(12), .footer__body .footer__col:nth-child(13) {
    padding: 0 0 1rem 1.5rem;
  }
  .footer__body .footer__col:nth-child(8) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    grid-row: 7/8;
    background-color: #1E1E1E;
    border-radius: 8px;
    padding: 1rem;
    margin-top: -2rem;
  }
  .footer__body .footer__col:nth-child(8) p {
    color: #767676;
    font-size: var(--font-size-xs);
  }
  .footer__body .footer__col:nth-child(9) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    grid-row: 8/9;
    padding: 0;
    text-align: center;
  }
  .footer__body .footer__col:nth-child(9) p {
    display: none;
  }
  .footer__body .footer__col .footer__title {
    border-bottom: 1px solid #3C3C3C;
    padding: 0.2rem 0 1rem;
  }
  .footer__body .footer__col .footer__title img {
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .footer__body .footer__col ul {
    height: 0;
    overflow: hidden;
    padding: 0;
    gap: 0;
  }
  .footer__body .footer__col .footer__social {
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__body .footer__col .footer__social p {
    text-align: center;
  }
  .footer__body .col__wrap.active .footer__title {
    margin-bottom: 1rem;
  }
  .footer__body .col__wrap.active .footer__title img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .footer__body .col__wrap.active ul {
    opacity: 1;
    height: auto;
    gap: 0.7rem;
  }
  .footer__body .col__wrap.active ul li {
    padding-left: 1rem;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
    text-align: center;
  }
}
body.nav-is-toggled header .mobile-nav {
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible;
}

header .mobile-header,
header .mobile-nav {
  display: none;
}
header nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: var(--color-bg-primary);
  z-index: 10;
  background-color: transparent;
}
header .nav-wrap {
  max-width: 1750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-4) var(--container-padding-base);
}
header .nav-wrap .logo {
  position: absolute;
  top: 24px;
  left: var(--container-padding-base);
  z-index: 100;
}
header .nav-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
header .nav-wrap ul .order-btn {
  opacity: 0;
}
header .logo,
header .menu-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
header .request-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: rgba(0, 0, 0, 0.56);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: 11;
}
header .request-overlay .request-wrapper {
  position: fixed;
  width: 550px;
  min-height: 100vh;
  right: 0;
  top: 0;
  background-color: var(--color-bg-primary);
  padding: 2rem 2rem;
}
header .request-overlay .request-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 40px;
  width: 40px;
  border: none;
  background-color: var(--color-bg-primary);
  cursor: pointer;
  z-index: 11;
}
header .request-overlay .request-close-btn:hover svg line {
  stroke: var(--color-text-secondary);
}
header .request-overlay .request-close-btn svg line {
  -webkit-transform: all 0.3s ease;
      -ms-transform: all 0.3s ease;
          transform: all 0.3s ease;
}
header .request-overlay h3 {
  font-weight: 400;
  font-size: 2.19rem;
  letter-spacing: 0.03em;
  line-height: 110%;
}
header .request-overlay p {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 120%;
  padding: 1rem 0 0;
  color: #212121;
}
header .menu-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  z-index: 10;
}
header .menu-overlay video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.15);
          filter: brightness(0.15);
}
header .menu-overlay .logo {
  position: relative;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
header .menu-overlay .logo .logotype path {
  fill: #fff !important;
  opacity: 1;
}
header .menu-overlay .menu-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 0.4rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu-overlay .menu-phone:hover {
  color: var(--color-accent-primary);
}
header .menu-overlay .menu-phone span {
  color: #b1b1b1;
  font-size: 0.8rem;
  font-weight: 500;
}
header .menu-close-btn {
  cursor: pointer;
}
header .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
header .menu-nav .menu-action ul li .order-btn {
  opacity: 1;
}
header .menu-cols {
  padding: 8em 6em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.333fr 0.333fr 0.333fr;
  grid-template-columns: 1fr 0.333fr 0.333fr 0.333fr;
  row-gap: 4rem;
}
header .menu-cols p {
  color: #969696;
  padding-bottom: 16px;
}
header .menu-cols ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
header .menu-cols ul li a {
  font-size: 2rem;
  color: var(--color-bg-primary);
  font-weight: 700;
  text-transform: uppercase;
}
header .menu-cols .menu-col .hover-item a {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
header .menu-cols .menu-col a.opacity {
  color: #969696;
}
header .menu-cols .menu-col:nth-child(1) {
  padding-right: 1rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
header .menu-cols .menu-col:nth-child(4) {
  padding-right: 1rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
header .menu-col.sub-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding-top: 3.2rem;
}
header .menu-col.sub-menu ul li a {
  font-size: 1.15rem;
  color: var(--color-bg-primary);
  font-weight: 400;
  text-transform: uppercase;
}
header .menu-col.menu-footer {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2/5;
  padding-top: 4rem;
}
header .menu-col.menu-footer ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
header .menu-col.menu-footer ul li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
}
header .menu-col.menu-footer ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
header .menu-col.menu-footer ul li a span:nth-child(2) {
  color: #b7b7b7;
  padding-left: 1.9rem;
  padding-top: 0.5rem;
  font-size: 0.7rem;
}
header .menu-col.menu-footer .menu-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}
header .menu-col.menu-footer .menu-social ul a {
  width: 32px;
  height: 32px;
  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;
  border-radius: 50%;
  background-color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu-col.menu-footer .menu-social ul a:hover {
  background-color: var(--color-accent-primary);
}

header.menu-open .menu-btn .burger span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(135deg);
      -ms-transform: translateY(6px) rotate(135deg);
          transform: translateY(6px) rotate(135deg);
}
header.menu-open .menu-btn .burger span:nth-child(2) {
  -webkit-transform: translateX(120px);
      -ms-transform: translateX(120px);
          transform: translateX(120px);
  opacity: 0;
}
header.menu-open .menu-btn .burger span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-135deg);
      -ms-transform: translateY(-8px) rotate(-135deg);
          transform: translateY(-8px) rotate(-135deg);
}

header.scrolled .mobile-header {
  background-color: #191919;
}

@media (max-width: 1024px) {
  header .menu-cols {
    gap: 1rem;
  }
  header .menu-cols .menu-col:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  header .menu-cols .menu-col:nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
  header .menu-cols .menu-col:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
  header .menu-cols .menu-col:nth-child(3) ul {
    padding-top: 2rem;
  }
  header .menu-cols .menu-col:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
  header .menu-cols .menu-col:nth-child(5) ul {
    gap: 0;
  }
}
@media (max-width: 760px) {
  header {
    position: relative;
  }
  header .desktop-header {
    display: none;
  }
  header .mobile-header {
    padding: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 11;
  }
  header .mobile-header .logotype-mobile img {
    width: 180px;
  }
  header .mobile-nav {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #191919;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: 0.45s;
    transition: 0.45s;
  }
  header .mobile-nav:after {
    content: "";
    background-image: url(../images/dist/menu-txt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 140px;
    bottom: 48px;
    right: 0;
    height: 60%;
    width: 40px;
    z-index: 11;
  }
  header .mobile-nav .nav-social {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    bottom: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 1rem 2rem;
    z-index: 20;
  }
  header .mobile-nav .nav-social a {
    color: #B7B7B7;
    font-weight: 300;
  }
  header .mobile-nav .nav-level-1 {
    padding: 140px 1rem 1rem 1rem;
  }
  header .mobile-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 0;
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
  header .mobile-nav .nav-link span {
    color: #707070;
    width: 48px;
  }
  header .mobile-nav .nav-link svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
  }
  header .nav-expand .nav-expand-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 140px 1rem 1rem 1rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #191919;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  header .nav-expand .nav-expand-content .nav-link {
    background-color: #191919;
    font-weight: 700;
    font-size: 1.38rem;
    line-height: 127%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  header .nav-expand .nav-expand-content .nav-back-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    background-color: #191919;
    color: #707070;
    font-weight: 400;
  }
  header .nav-expand .nav-expand-content .nav-back-link svg {
    margin-left: 0;
  }
  header .nav-expand .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .nav-expand.active > .nav-expand-content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  header .request-overlay {
    top: 56px;
  }
  header .request-overlay .request-wrapper {
    width: 100%;
  }
}
@media (max-width: 500px) {
  header .request-overlay .request-wrapper {
    padding: 1rem;
  }
  header .request-overlay .request-close-btn {
    top: 1rem;
    right: 1rem;
  }
  header .request-overlay form .request-footer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contact {
  background-color: #191A1F;
  height: 100vh;
  width: 100%;
  position: relative;
}

.marquee {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.marquee:before {
  content: "";
  background-image: url(../images/dist/ellipse.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 280px;
  z-index: 1;
}
.marquee:after {
  content: "";
  background-image: url(../images/dist/ellipse.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  bottom: -72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 280px;
  z-index: 1;
}

.marquee__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-animation: marquee 100s linear infinite;
          animation: marquee 100s linear infinite;
  will-change: transform;
}

.marquee__item {
  height: 100%;
  width: 90vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.contact__wrapper {
  max-width: 600px;
  position: absolute;
  border-radius: 1rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9;
}
.contact__wrapper .form-wrapper {
  padding: 3.5rem 3rem 3rem;
}
.contact__wrapper .form-wrapper .back {
  position: absolute;
  top: 8px;
  left: 8px;
}
.contact__wrapper .form-wrapper .back svg circle {
  -webkit-transition: var(--transition-default);
  transition: var(--transition-default);
}
.contact__wrapper .form-wrapper .back:hover svg circle {
  fill: var(--color-accent-primary);
}
.contact__wrapper .form-wrapper h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 133%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.5rem;
}
.contact__wrapper .form-wrapper p {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
}
.contact__wrapper .form-wrapper form {
  padding-top: 1rem;
}
.contact__wrapper .form-wrapper form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 0.7rem 0 1rem;
}
.contact__wrapper .form-wrapper form .checkbox .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.contact__wrapper .form-wrapper form .checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background-color: #F3F3F3;
  width: 22px;
  height: 22px;
  margin-left: 0;
}
.contact__wrapper .form-wrapper form .checkbox input[type=checkbox]:checked {
  background-color: #F3F3F3;
  border: 1px solid #F3F3F3;
}
.contact__wrapper .form-wrapper form .checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: var(--color-accent-primary);
  border-style: solid;
}
.contact__wrapper .form-wrapper form .checkbox label span {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--color-accent-primary);
}
.contact__wrapper .form-wrapper form textarea {
  font-size: 1rem;
  width: 100%;
  border: solid 1px #BABABA;
  background-color: var(--color-bg-primary);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  color: var(--color-text-primary);
  resize: none;
}
.contact__wrapper .form-wrapper form .request-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
.contact__wrapper .form-wrapper form .request-footer .border-btn {
  width: 100%;
  background-color: var(--color-accent-primary);
  color: var(--color-bg-primary);
  border: 1px solid var(--color-accent-primary);
}
.contact__wrapper .form-wrapper form .request-footer .border-btn:hover {
  border: 1px solid var(--color-text-secondary);
  background-color: var(--color-text-secondary);
}
.contact__wrapper .form-wrapper form .request-footer p {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #212121;
}
.contact__wrapper .form-wrapper form .request-footer p a {
  color: var(--color-accent-primary);
}
.contact__wrapper .form-wrapper form .request-footer p a:hover {
  color: blue;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header {
  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.5rem;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header p {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 117%;
  letter-spacing: 0.03em;
  color: #919191;
  text-align: left;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload-fill {
  display: block;
  cursor: pointer;
  height: 40px;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload {
  background-color: #f8f8f8;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 1rem;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload .fake-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload .fake-btn {
  border: 2px solid var(--color-black);
  border-radius: 1.25rem;
  background-color: var(--color-black);
  color: var(--color-bg-primary);
  padding: 8px 16px;
  font-weight: 300;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload .fake-btn svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload .fake-btn:hover {
  border: 2px solid var(--color-accent-primary);
  background-color: var(--color-accent-primary);
  color: var(--color-bg-primary);
}
.contact__wrapper .form-wrapper .file-uploader .uploader-header .upload .fake-btn:hover svg path {
  stroke: var(--color-bg-primary);
}
.contact__wrapper .form-wrapper .file-uploader .files-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0 auto;
  padding-top: 1rem;
}
.contact__wrapper .form-wrapper .file-uploader .files-area .files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.contact__wrapper .form-wrapper .file-uploader .file-block {
  border-radius: 5px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 486px;
  overflow: hidden;
}
.contact__wrapper .form-wrapper .file-uploader .file-block > span.name {
  padding: 2px 13px 3px 0px;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-text-primary);
}
.contact__wrapper .form-wrapper .file-uploader .file-delete {
  color: #9c9c9c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px !important;
  background-color: transparent;
  font-size: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1px 5px 1px 5px;
  cursor: pointer;
}
.contact__wrapper .form-wrapper .file-uploader .file-delete:hover {
  color: var(--color-accent-primary);
}
.contact__wrapper .form-wrapper .file-uploader .file-delete > span {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact__wrapper .answer-wrapper {
  padding: 2rem 2rem 3rem;
  background: radial-gradient(69.44% 120.96% at 31.94% 0%, #f9f9f9 0%, #f6f1ed 100%);
  max-width: 600px;
  width: 100%;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.contact__wrapper .answer-wrapper img {
  max-width: 70%;
  margin: 0 auto;
}
.contact__wrapper .answer-wrapper h4 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 125%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

@media (max-width: 1300px) {
  .marquee__item {
    width: 120vw;
  }
}
@media (max-width: 1024px) {
  .contact__wrapper {
    width: 600px;
  }
  .contact__wrapper .form-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .contact__wrapper {
    width: 90%;
    margin: 4rem 0 2rem;
  }
  .marquee__inner {
    display: none;
  }
}
@media (max-width: 590px) {
  .contact__wrapper .form-wrapper {
    padding: 1rem;
  }
  .contact__wrapper .form-wrapper h3 {
    font-size: 1rem;
    text-wrap-style: balance;
    padding: 0 2rem;
  }
  .contact__wrapper .form-wrapper h3 + p {
    text-wrap: pretty;
    padding: 0 1rem;
  }
  .contact__wrapper .form-wrapper form {
    padding-top: 0;
  }
}
.design {
  overflow: hidden;
  padding: 4rem 0;
}

.design__header {
  max-width: var(--container-width-max);
  margin: 0 auto;
  position: relative;
  display: block;
}
.design__header .animate-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
}
.design__header h2 {
  color: #f1f1f1;
  font-size: 20vw;
  font-weight: 700;
  text-align: center;
  line-height: calc(20vw + 40px);
  height: 383px;
  letter-spacing: 120px;
  opacity: 0.1;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.design__header-wrapper {
  margin-top: -120px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.3fr 1fr;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  position: relative;
  padding-bottom: 3rem;
  z-index: 2;
}
.design__header-wrapper .design__header-text {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.design__header-wrapper .design__header-text h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  padding-bottom: 0.5rem;
}
.design__header-wrapper .design__header-text .price {
  font-size: 1rem;
  color: var(--color-accent-primary);
}
.design__header-wrapper .design__header-text .price span {
  font-size: 1.5rem;
  font-weight: 700;
}
.design__header-wrapper .design__header-text .desc {
  font-size: 1.2rem;
  line-height: normal;
  padding: 1rem 12rem 2rem 0;
}

.design__slider {
  margin: 0 auto;
}
.design__slider .tabnav {
  width: 600px;
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.design__slider .tabnav ul {
  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: 0.5rem;
}
.design__slider .tabnav a {
  display: inline-block;
  padding: 0 1rem;
  line-height: normal;
  color: var(--color-text-primary);
  padding: 0.7rem 1.2rem;
  border-radius: 40px;
  background: #f1f1f1;
  font-size: 1rem;
  text-align: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.design__slider .tabContainer {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.design__slider .tabcondent {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  visibility: hidden;
  height: 0;
}
.design__slider a.active {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
  background: #fff;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  margin: 0 0.5rem;
}
.design__slider .tabcondent.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 0px;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  margin: 0 auto;
  visibility: visible;
  height: auto;
}

.design__swiper {
  padding-top: 3rem;
  position: relative;
}
.design__swiper .container {
  position: static;
}
.design__swiper .swiper-wrapper {
  height: 678px;
}
.design__swiper .swiper-button-next,
.design__swiper .swiper-button-prev {
  width: 56px;
  height: 56px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 8;
}
.design__swiper .swiper-button-next:hover,
.design__swiper .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.design__swiper .swiper-button-prev {
  left: 2em;
}
.design__swiper .swiper-button-prev img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.design__swiper .swiper-button-next {
  right: 2em;
}
.design__swiper .swiper-slide {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.design__swiper .swiper-slide .design__slider-img {
  height: 678px;
  width: 100%;
}
.design__swiper .swiper-slide .design__slider-info {
  width: 100%;
  height: 190px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.design__swiper .swiper-slide .design__slider-info .design__slider-info-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
.design__swiper .swiper-slide .design__slider-info .design__slider-info-wrap div:first-child {
  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.5rem;
}
.design__swiper .swiper-slide .design__slider-info h4 {
  font-size: 1.875rem;
  font-weight: 700;
}
.design__swiper .swiper-slide .design__slider-info p .value {
  position: relative;
  padding: 0 0.5rem 0 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.design__swiper .swiper-slide .design__slider-info p .value:before {
  content: url(../images/dist/icon/square-icon.svg);
  position: absolute;
  left: 0;
}
.design__swiper .swiper-slide .design__slider-info .tags {
  font-size: 0.9rem;
  color: #ddd;
  pointer-events: none;
}
.design__swiper .swiper-slide.swiper-slide-active {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.design__swiper .swiper-slide.swiper-slide-active .design__slider-info div {
  opacity: 1;
  bottom: 0;
}

@media (max-width: 1440px) {
  .design__header-wrapper .design__header-text .desc {
    padding: 1rem 0;
  }
  .design__swiper .swiper-wrapper {
    height: auto;
  }
  .design__slider .swiper-slide {
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .design__slider .swiper-slide .design__slider-img {
    height: auto;
  }
  .design__slider .swiper-slide .design__slider-info .design__slider-info-wrap {
    padding: 1rem;
  }
  .design__slider .swiper-slide .design__slider-info h4 {
    font-size: 1.2rem;
  }
  .design__slider .swiper-slide.swiper-slide-active {
    height: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1180px) {
  .design__header-wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1080px) {
  .design__header .animate-title-box {
    display: block;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .design__header .animate-title-box h2 {
    position: absolute;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    right: -208px;
    top: 195px;
    bottom: 0;
    font-size: 7rem;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    line-height: 7rem;
    opacity: 1;
    letter-spacing: normal;
    overflow: hidden;
    pointer-events: none;
  }
  .design__header-wrapper {
    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;
    margin-top: 0;
    padding: 2rem 0 0;
  }
  .design__header-wrapper .design__header-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: -120px;
  }
  .design__header-wrapper .design__header-img img {
    max-width: 70%;
  }
  .design__header-wrapper .design__header-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .design__header-wrapper .design__header-text .desc {
    max-width: 380px;
  }
}
@media (max-width: 990px) {
  .design {
    padding: 4rem 0 2rem;
  }
  .design__swiper .swiper-button-next,
  .design__swiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 670px) {
  .design {
    padding: 2rem 0;
  }
  .design__header-wrapper {
    gap: 1rem;
    padding: 0;
  }
  .design__header-wrapper .design__header-img {
    margin-top: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .design__header-wrapper .design__header-img img {
    max-width: 100%;
  }
  .design__header-wrapper .design__header-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0.5rem;
  }
  .design__header-wrapper .design__header-text .desc {
    max-width: 380px;
  }
  .design__slider .design__swiper .swiper-slide .design__slider-img {
    height: 380px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .design__slider .design__swiper .swiper-slide .design__slider-info {
    height: 60%;
  }
  .design__slider .tabnav {
    padding: 0;
    width: 100%;
    display: block;
  }
  .design__slider .tabnav ul {
    position: relative;
    width: auto;
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
  }
  .design__slider .tabnav ul::-webkit-scrollbar {
    display: none;
  }
  .design__slider .tabnav ul li {
    scroll-snap-align: start;
  }
  .design__slider .tabnav ul li a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
.discounts__wrapper {
  text-align: center;
  padding: 2rem 0;
}

.discounts-offer {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}
.discounts-offer h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-weight: 400;
  font-size: 3rem;
  line-height: 187%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 0 1rem 1rem;
}
.discounts-offer h3 img {
  width: 170px;
}
.discounts-offer p {
  font-weight: 400;
  font-size: 1.38rem;
  line-height: 127%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #212121;
  max-width: 680px;
}
.discounts-offer p span {
  color: var(--color-accent-primary);
  font-weight: 800;
}

.discounts-swiper {
  padding: 4rem 0 2rem;
  max-width: 60%;
}
.discounts-swiper .swiper-slide-active {
  background: #f9f9f9;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.discounts__wrapper .swiper-wrapper {
  position: relative;
  -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
          transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.discounts__wrapper .swiper-wrapper .swiper-slide {
  -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
          transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.discounts__wrapper .swiper-wrapper .custom-next,
.discounts__wrapper .swiper-wrapper .custom-prev {
  position: absolute;
  width: 43px;
  height: 8px;
  background-color: #eaeaea;
  border-radius: 2rem;
  margin-top: -4px;
  z-index: 10;
  top: 58%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.discounts__wrapper .swiper-wrapper .custom-next {
  right: 17%;
}
.discounts__wrapper .swiper-wrapper .custom-prev {
  left: 17%;
}

@media (max-width: 1366px) {
  .discounts-swiper {
    max-width: 90%;
  }
  .discounts__wrapper .swiper-wrapper .custom-prev {
    left: 0;
  }
  .discounts__wrapper .swiper-wrapper .custom-next {
    right: 0;
  }
}
@media (max-width: 860px) {
  .discounts-offer h3 {
    font-size: 2rem;
  }
  .discounts-swiper {
    max-width: 100%;
  }
  .discounts__wrapper .swiper-wrapper .custom-prev,
  .discounts__wrapper .swiper-wrapper .custom-next {
    display: none;
  }
}
@media (max-width: 560px) {
  .discounts__wrapper {
    padding: 0;
  }
  .discounts-swiper {
    padding: 2rem 0 2rem;
  }
  .discounts-offer h3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    padding: 0;
  }
  .discounts-offer h3 img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin: 0 auto;
  }
  .discounts-offer p {
    font-size: 1rem;
  }
}
.facts {
  padding: 4rem 0;
  background-color: #F9F9F9;
}

.facts-header {
  padding: 2rem 0 4rem;
}
.facts-header h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 112%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.facts-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.facts-row .facts-row-title {
  font-weight: 300;
  font-size: 1.38rem;
  line-height: 118%;
  letter-spacing: 0.02em;
  max-width: 600px;
}
.facts-row .fsc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 470px;
  border: 1px solid #D9D9D9;
  border-radius: 55px;
  overflow: hidden;
  position: relative;
}
.facts-row .fsc::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: #8CA375;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.facts-row .fsc:hover::before {
  width: 100%;
}
.facts-row .fsc p {
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 114%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: 145px;
  position: relative;
  z-index: 2;
}
.facts-row .fsc .forest {
  position: absolute;
  bottom: 0;
  right: 24px;
  z-index: 1;
}
.facts-row .fsc .arrow {
  margin-left: auto;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}
.facts-row .fsc .fsc-logo {
  width: 100px;
  height: 100px;
  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;
  position: relative;
}

.facts-grid-item {
  border-radius: 8px;
  background-size: cover;
  overflow: hidden;
}
.facts-grid-item h5 {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.facts-grid-item p {
  font-weight: 300;
  letter-spacing: 0.02em;
}
.facts-grid-item:nth-child(1) {
  background: linear-gradient(157deg, #f5ebe3 0%, #efdabc 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
}
.facts-grid-item:nth-child(1) .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.facts-grid-item:nth-child(1) .content span {
  font-weight: 700;
  font-size: 6.25rem;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #fff;
}
.facts-grid-item:nth-child(2) {
  background: linear-gradient(152deg, #ede6dc 0%, #f1ddc2 100%);
  padding: 2rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.facts-grid-item:nth-child(2) .content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: #ff6100;
  padding-bottom: 1rem;
}
.facts-grid-item:nth-child(2) .content span p {
  font-weight: 200;
  font-size: 6.25rem;
  line-height: 95%;
  color: #f60;
}
.facts-grid-item:nth-child(2) img {
  max-width: 80%;
  margin: 0 auto;
}
.facts-grid-item:nth-child(3) {
  background-image: url(../images/dist/fact-img-3-xl.jpg);
  background-position: right top;
  padding: 2rem;
}
.facts-grid-item:nth-child(3) .content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: #474747;
  padding-bottom: 1rem;
}
.facts-grid-item:nth-child(3) .content span p {
  font-weight: 200;
  font-size: 6.25rem;
  line-height: 95%;
  color: #474747;
}
.facts-grid-item:nth-child(4) {
  background: #e9e3db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
}
.facts-grid-item:nth-child(4) .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.facts-grid-item:nth-child(4) .content span {
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  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;
  margin-top: -8px;
}
.facts-grid-item:nth-child(4) .content span p {
  font-weight: 700;
  font-size: 6.25rem;
  line-height: 100%;
  color: #fff;
}
.facts-grid-item:nth-child(4) img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 190px;
}
.facts-grid-item:nth-child(5) {
  background-image: url(../images/dist/fact-img-5-xl.jpg);
  background-position: right bottom;
  padding: 2rem;
}
.facts-grid-item:nth-child(5) .content span {
  font-weight: 200;
  font-size: 3.75rem;
  letter-spacing: 0.02em;
  color: #f60;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.facts-grid-item:nth-child(5) .content span p {
  font-weight: 200;
  font-size: 6.25rem;
  letter-spacing: 0.01em;
  color: #f60;
}
.facts-grid-item:nth-child(5) h5 {
  color: #fff;
}
.facts-grid-item:nth-child(6) {
  display: none;
}

@media (max-width: 1024px) {
  .facts-header {
    padding: 2rem 0;
  }
  .facts-header h3 {
    font-size: 1.5rem;
  }
  .facts-header .facts-row {
    margin-top: -32px;
    gap: 2rem;
  }
  .facts-header .facts-row .facts-row-title {
    font-size: 1rem;
  }
  .facts-header .facts-row .fsc {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 55%;
            flex: 1 1 55%;
  }
}
@media (min-width: 881px) {
  .fact-swiper .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.4fr 1fr 1fr;
    grid-template-columns: 1.4fr 1fr 1fr;
    -ms-grid-rows: 350px 300px;
    grid-template-rows: 350px 300px;
    gap: 1rem;
  }
  .facts-grid-item:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
@media (min-width: 881px) and (max-width: 1366px) {
  .fact-swiper .swiper-wrapper {
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (max-width: 880px) {
  .facts {
    padding: 2rem 0 3rem;
  }
  .facts .container {
    padding: 0;
  }
  .facts .swiper {
    overflow: visible;
  }
  .facts .swiper-pagination {
    bottom: -34px;
  }
  .facts .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .facts .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-accent-primary);
  }
  .facts-header {
    padding-left: var(--container-padding-base);
    padding-right: var(--container-padding-base);
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .facts-header .facts-row {
    margin-top: 0;
  }
  .facts-header .facts-row .fsc {
    display: none;
  }
  .facts-grid-item {
    height: 70vh;
  }
  .facts-grid-item:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .facts-grid-item:nth-child(3) {
    background-image: url(../images/dist/fact-img-3-s.jpg);
  }
  .facts-grid-item:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .facts-grid-item:nth-child(4) .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .facts-grid-item:nth-child(4) .content span {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 170%;
  }
  .facts-grid-item:nth-child(5) {
    background-image: url(../images/dist/fact-img-5-s.jpg);
  }
  .facts-grid-item:nth-child(6) {
    display: block;
    background-image: url(../images/dist/facts-fsc.jpg);
    background-position: right bottom;
    padding: 2rem;
  }
  .facts-grid-item:nth-child(6) .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .facts-grid-item:nth-child(6) .content h5 {
    padding: 1rem 0 0.5rem;
  }
  .facts-grid-item:nth-child(6) .content p {
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
  }
  .facts-grid-item:nth-child(6) .content a {
    margin-top: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .facts-grid-item:nth-child(6) h5 {
    color: #fff;
  }
}
.form {
  padding: 3rem 0;
  background-color: #F9F9F9;
}

.form__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.9fr 1fr;
  grid-template-columns: 0.9fr 1fr;
  background-color: #fff;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.form__wrapper .form-person img {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.form-person {
  position: relative;
}
.form-person .person {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: #fff;
}
.form-person .person p:nth-child(2) {
  font-size: 0.75rem;
  padding-top: 0.3rem;
}

.form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 6rem 2rem 2rem;
}
.form-content .form-content-title h5 {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.28rem);
  line-height: 142%;
  text-transform: uppercase;
}
.form-content .form-content-title .person {
  display: none;
}
.form-content .form-content-title p {
  font-size: 1rem;
  line-height: 118%;
  letter-spacing: 0.02em;
  padding-right: 4rem;
}
.form-content form {
  padding: 3rem 0 4rem;
  width: 100%;
}
.form-content form .input-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-content form button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.form-content form .notion {
  font-weight: 400;
  font-size: 0.75rem;
}
.form-content form .notion a {
  text-decoration: underline;
  color: var(--color-accent-primary);
}
.form-content .form-social p {
  padding-bottom: 1rem;
}
.form-content .form-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.form-content .form-social a {
  width: 40px;
  height: 40px;
  background-color: #292929;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-content .form-social a svg path {
  fill: var(--color-white);
}
.form-content .form-social a:hover {
  background-color: var(--color-accent-primary);
}

@media (max-width: 1380px) {
  .form {
    padding: 0rem 0rem 1rem;
  }
  .form__wrapper {
    display: block;
    background-color: #F9F9F9;
  }
  .form-person {
    display: none;
  }
  .form-social {
    display: none;
  }
  .form-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
  }
  .form-content .form-content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .form-content .form-content-title h5 {
    font-size: clamp(1.24rem, 4vw, 1.75rem);
  }
  .form-content .form-content-title .person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .form-content .form-content-title .person img {
    max-width: 72px;
  }
  .form-content .form-content-title .person .person-title h6 {
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: 0.03em;
  }
  .form-content form {
    background-color: #fff;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 4rem 2rem 2rem 2rem;
    border-radius: 1.25rem;
    position: relative;
  }
  .form-content form:before {
    content: "";
    background-image: url(../images/dist/form-fig.svg);
    background-size: cover;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: absolute;
    top: -29px;
    left: 2rem;
    width: 64px;
    height: 64px;
  }
  .form-content form .notion {
    max-width: 420px;
  }
}
@media (max-width: 1024px) {
  .form form .input-box {
    background-color: #fff;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 0 2rem;
    border-radius: 1.25rem;
    position: relative;
  }
  .form form .input-box .notion {
    max-width: 420px;
  }
}
@media (max-width: 880px) {
  .form {
    margin-top: 2rem;
    padding: 0;
  }
  .form .container {
    padding-left: 0;
    padding-right: 0;
  }
  .form__wrapper {
    background-color: #fff;
  }
  .form-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  .form-content .form-content-title {
    padding-left: var(--container-padding-base);
    padding-right: var(--container-padding-base);
  }
  .form-content .form-content-title h5 {
    font-size: 1.5rem;
    max-width: 300px;
  }
  .form-content .form-content-title p {
    padding: 1rem;
    background: radial-gradient(69.44% 120.96% at 31.94% 0%, #f9f9f9 0%, #f6f1ed 100%);
    border-radius: 1rem;
    position: relative;
    z-index: 2;
  }
  .form-content .form-content-title p:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #f9f9f9;
    position: absolute;
    top: -12px;
    left: 24px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: 1;
  }
  .form-content form {
    padding-left: var(--container-padding-base);
    padding-right: var(--container-padding-base);
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .form-content form:before {
    content: none;
  }
}
.hero {
  height: 100vh;
  max-height: 1080px;
  overflow: hidden;
}
.hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.hero__wrapper {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
}
.hero__wrapper .preloader__wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  padding: 0 4em;
  color: var(--color-bg-primary);
  z-index: 9;
}
.hero__wrapper .preloader__wrapper .grid-item {
  text-align: center;
  margin: 0 auto;
}
.hero__wrapper .preloader__wrapper h1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
.hero__wrapper .preloader__wrapper h1 span {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero__wrapper .preloader__wrapper .slogan {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hero__wrapper .hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 2rem 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 2;
}
.hero__wrapper .hero-bottom .devider {
  display: block;
  height: 40px;
  width: 1px;
  background-color: #666666;
}
.hero__wrapper .hero-bottom__item {
  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-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  color: var(--color-bg-primary);
}
.hero__wrapper .hero-bottom__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border: 1px solid transparent;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.hero__wrapper .hero-bottom__item a:hover {
  border: 1px solid #919191;
}
.hero__wrapper .scroll {
  margin-top: 0.2rem;
}
.hero__wrapper .scroll .scroll-arrow {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-animation: arrow-wave 1s infinite;
          animation: arrow-wave 1s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.hero__wrapper .scroll .scroll-arrow:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.hero__wrapper .scroll .scroll-arrow:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.hero__wrapper .scroll .scroll-arrow:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@-webkit-keyframes arrow-wave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-wave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1400px) {
  .hero__wrapper .preloader__wrapper .slogan {
    font-size: 2rem;
  }
  .hero__wrapper .preloader__wrapper .preloader__item {
    font-size: clamp(3rem, 4vw, 5rem);
  }
}
@media (max-width: 1280px) {
  .hero__wrapper .hero-bottom {
    padding: 2rem 1rem 2rem;
  }
  .hero__wrapper .hero-bottom .hero-bottom__item span, .hero__wrapper .hero-bottom .hero-bottom__item a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .hero__wrapper .hero-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__wrapper .hero-bottom > *:nth-child(-n+6) {
    display: none;
  }
}
@media (max-width: 860px) {
  .hero__wrapper .hero-bottom .hero-bottom__item {
    padding: 2rem 2rem 1rem;
  }
  .hero__wrapper .hero-bottom .hero-bottom__item a {
    border: 1px solid #666666;
    font-size: 1rem;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background: rgba(217, 217, 217, 0.1);
  }
  .hero__wrapper .preloader__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .hero__wrapper .preloader__wrapper h1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .hero__wrapper .preloader__wrapper h1 span {
    font-size: 2rem;
  }
}
@media (max-width: 760px) {
  .hero__wrapper .preloader__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    line-height: normal;
    padding: 1rem;
  }
  .hero__wrapper .preloader__wrapper .preloader__item {
    font-size: 5rem;
  }
  .hero__wrapper .hero__txt {
    padding: 2rem 2rem 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  .hero__wrapper .hero__txt img {
    padding: 0;
  }
  .hero__wrapper .hero__txt h1 span:nth-child(1) {
    font-size: 2.7rem;
  }
  .hero__wrapper .hero__txt h1 span:nth-child(2) {
    font-size: 1rem;
  }
  .hero__wrapper .hero__txt p {
    font-size: 1rem;
    max-width: 100%;
    letter-spacing: normal;
  }
}
@media (max-width: 360px) {
  .hero__wrapper .preloader__wrapper .preloader__item {
    font-size: 4rem;
  }
  .hero__wrapper .hero__txt h1 span:nth-child(1) {
    font-size: 2rem;
  }
  .hero__wrapper .hero__txt h1 span:nth-child(2) {
    font-size: 1rem;
  }
}
.more {
  padding: 2rem 0 3rem;
}
.more .container {
  overflow: visible;
}
.more .portfolio-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 175%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.more .works-swiper {
  overflow: visible;
}
.more .works-swiper .marquee-swiper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.more .portfolio-card {
  overflow: hidden;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.more .portfolio-card:hover img {
  -webkit-transform: scale(1.065);
      -ms-transform: scale(1.065);
          transform: scale(1.065);
}
.more .portfolio-card .img-wrap {
  display: inline-block;
  border-radius: 1rem;
  overflow: hidden;
  width: 350px;
  height: 520px;
}
.more .portfolio-card .img-wrap img {
  display: inline-block;
  border-radius: 1rem;
  width: 350px;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.more .card-title {
  padding-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.more .portfolio-button-wrapper {
  text-align: center;
  margin-top: 3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 760px) {
  .more .container {
    padding: 0;
  }
}
.portfolio {
  padding: 1rem 0 0;
}

.portfolio-mobile {
  display: none;
}

.portfolio-header {
  max-width: var(--container-width-max);
  margin: 0 auto;
  position: relative;
  display: block;
  padding-bottom: 6rem;
}
.portfolio-header .animate-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.portfolio-header .animate-title-box img {
  position: absolute;
}
.portfolio-header .animate-title-box img.title-lamp {
  right: 0;
  bottom: -30px;
  width: 15%;
}
.portfolio-header .animate-title-box img.title-chair {
  width: 22%;
  bottom: -60px;
  left: 24%;
}
.portfolio-header h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 800;
  font-size: 12.7388535032vw;
  line-height: 95%;
  text-transform: uppercase;
  color: #ededed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.portfolio-header h2 span {
  letter-spacing: 120px;
  opacity: 0;
}
.portfolio-header p {
  position: absolute;
  top: 55px;
  left: 55%;
  font-size: 1.38rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  max-width: 480px;
  margin: 0 auto;
}
.portfolio-header p span {
  font-weight: 700;
}

.portfolio-swiper .swiper-slide {
  position: relative;
  height: 780px;
  width: 100%;
  overflow: hidden;
}
.portfolio-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(60%, rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  height: 100%;
  padding-bottom: 4rem;
  color: #fff;
  z-index: 2;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt h3 {
  font-size: 1.75rem;
  padding-bottom: 0.5rem;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span {
  position: relative;
  display: inline-block;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span:nth-child(1) {
  padding-left: 24px;
  font-weight: 700;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span:nth-child(1):before {
  background-image: url(../images/dist/icon/obj-fig-1.svg);
  width: 19px;
  height: 18px;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span:nth-child(2) {
  padding-left: 24px;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .portfolio__swiper-txt .object span:nth-child(2):before {
  background-image: url(../images/dist/icon/obj-fig-2.svg);
  width: 17px;
  height: 18px;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .video-frame {
  position: relative;
  display: inline-block;
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .video-frame a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.portfolio-swiper .swiper-slide .portfolio__swiper-content .video-frame video {
  border: 1px solid #fff;
  border-radius: 8px;
  width: 432px;
  aspect-ratio: 16/9;
}
.portfolio-swiper .custom-pagination {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 35px;
  background: #2b2625;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  z-index: 10;
}
.portfolio-swiper .custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #cbcbcb;
  border: 1px solid #747474;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.portfolio-swiper .custom-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent-primary);
  border: 1px solid var(--color-accent-primary);
}

@media (max-width: 860px) {
  .portfolio__swiper .swiper-slide {
    height: 660px;
  }
  .portfolio__swiper .swiper-slide .portfolio__swiper-content h3 {
    font-size: 1.25rem;
  }
  .portfolio__swiper .swiper-slide .portfolio__swiper-content .slide-btn {
    opacity: 1;
    -webkit-transform: translate(0px, 24px);
        -ms-transform: translate(0px, 24px);
            transform: translate(0px, 24px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: none;
    padding: 0.5rem 0;
  }
  .portfolio__swiper .swiper-slide .portfolio__swiper-content .video-frame {
    display: none;
  }
  .portfolio .portfolio-header {
    padding: 0 0 4rem;
  }
}
@media (max-width: 768px) {
  .portfolio {
    padding: 1rem 0;
  }
  .portfolio .portfolio-header,
  .portfolio .portfolio-swiper {
    display: none;
  }
  .portfolio .portfolio-mobile {
    display: block;
  }
  .portfolio-section .swiper {
    overflow: visible;
  }
  .portfolio-section .swiper .swiper-pagination {
    bottom: -40px;
  }
  .portfolio-section .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .portfolio-section .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-accent-primary);
  }
  .portfolio-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .portfolio-mobile .portfolio-mobile__header img {
    width: 120px;
  }
  .portfolio-mobile h2 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 131%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    max-width: 226px;
    padding-bottom: 0.5rem;
  }
  .portfolio-mobile p span {
    font-weight: 700;
  }
  .portfolio-mobile .portfolio-mobi-bg {
    margin-top: -3rem;
  }
  .portfolio-mobile .portfolio-mobile__body {
    background-color: #2B2625;
    padding: 2rem 0;
    margin-top: -1px;
  }
  .portfolio-mobile .portfolio-mobile__body .article {
    position: relative;
  }
  .portfolio-mobile .portfolio-mobile__body .article::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 24px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 38, 37, 0)), to(#2b2625));
    background: linear-gradient(180deg, rgba(43, 38, 37, 0) 0%, #2b2625 100%);
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
  .portfolio-mobile .portfolio-mobile__body .article .moretext {
    display: none;
  }
  .portfolio-mobile .portfolio-mobile__body .article.expanded:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(43, 38, 37, 0)), color-stop(0%, #2b2625));
    background: linear-gradient(180deg, rgba(43, 38, 37, 0) 100%, #2b2625 0%);
  }
  .portfolio-mobile-item {
    padding-bottom: 3rem;
  }
  .portfolio-mobile-item h3 {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    padding-bottom: 4px;
  }
  .portfolio-mobile-item .object {
    color: #9D9D9D;
  }
  .portfolio-mobile-item .object span {
    position: relative;
    display: inline-block;
  }
  .portfolio-mobile-item .object span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
  }
  .portfolio-mobile-item .object span:nth-child(1) {
    padding-left: 24px;
    font-weight: 700;
  }
  .portfolio-mobile-item .object span:nth-child(1):before {
    background-image: url(../images/dist/icon/obj-fig-1.svg);
    background-size: contain;
    width: 15px;
    height: 13px;
  }
  .portfolio-mobile-item .object span:nth-child(2) {
    padding-left: 24px;
  }
  .portfolio-mobile-item .object span:nth-child(2):before {
    background-image: url(../images/dist/icon/obj-fig-2.svg);
    background-size: contain;
    width: 13px;
    height: 14px;
  }
  .portfolio-mobile-item .object p {
    font-size: 1rem;
    line-height: 125%;
  }
  .portfolio-mobile-item .object .video-frame {
    padding: 0.8rem 0;
    position: relative;
    display: inline-block;
  }
  .portfolio-mobile-item .object .video-frame a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .portfolio-mobile-item .object .video-frame video {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .portfolio-mobile-item .object .moreless-button {
    position: relative;
    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;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background-color: #1E1B16;
    margin-left: auto;
    margin-top: -1rem;
  }
  .portfolio-mobile-item .object .moreless-button img {
    -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;
  }
  .portfolio-mobile-item .object .moreless-button.expanded img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .portfolio-mobile-more {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding-top: 1rem;
    text-transform: uppercase;
    text-align: center;
    color: #9d9d9d;
  }
}
.request-cta {
  padding: 4rem 0;
}

.request-cta__wrapper {
  background-image: url(../images/dist/offer-bg-xl.png);
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 650px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  border-radius: 8px;
  overflow: hidden;
}

.request-cta__offer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0rem 1rem 0rem 6rem;
}
.request-cta__offer h2 {
  font-weight: 700;
  font-size: var(--font-size-4xl);
  line-height: 116%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 620px;
  padding-bottom: 0.5rem;
}
.request-cta__offer p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  max-width: 490px;
  padding-bottom: 2rem;
}

.request-cta__image {
  position: relative;
}
.request-cta__image img {
  max-width: 430px;
  padding: 3rem 0 0 0;
  margin-left: 4rem;
  position: relative;
  z-index: 5;
}
.request-cta__image .circle {
  position: absolute;
  width: 530px;
  height: 530px;
  bottom: -50px;
  left: 10px;
  right: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 2;
}
.request-cta__image .circle-item {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 60px;
  width: 60px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10rem;
  position: absolute;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}
.request-cta__image .circle-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 2px;
}
.request-cta__image .circle-item p {
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
}
.request-cta__image .circle-item:nth-child(1), .request-cta__image .circle-item:nth-child(2) {
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
}
.request-cta__image .circle-item:nth-child(1):hover, .request-cta__image .circle-item:nth-child(2):hover {
  width: 235px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(255, 102, 0, 0.16);
          box-shadow: 0 2px 8px 0 rgba(255, 102, 0, 0.16);
}
.request-cta__image .circle-item:nth-child(1):hover svg, .request-cta__image .circle-item:nth-child(2):hover svg {
  margin-right: 8px;
}
.request-cta__image .circle-item:nth-child(1):hover p, .request-cta__image .circle-item:nth-child(2):hover p {
  opacity: 1;
  visibility: visible;
}
.request-cta__image .circle-item:nth-child(3), .request-cta__image .circle-item:nth-child(4) {
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.request-cta__image .circle-item:nth-child(3) svg, .request-cta__image .circle-item:nth-child(4) svg {
  margin-left: 8px;
}
.request-cta__image .circle-item:nth-child(3) p, .request-cta__image .circle-item:nth-child(4) p {
  visibility: visible;
}
.request-cta__image .circle-item:nth-child(3):hover, .request-cta__image .circle-item:nth-child(4):hover {
  width: 235px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(255, 102, 0, 0.16);
          box-shadow: 0 2px 8px 0 rgba(255, 102, 0, 0.16);
}
.request-cta__image .circle-item:nth-child(3):hover p, .request-cta__image .circle-item:nth-child(4):hover p {
  opacity: 1;
}
.request-cta__image .circle-item:nth-child(1) {
  left: 92%;
  top: 25%;
}
.request-cta__image .circle-item:nth-child(2) {
  left: 95%;
  top: 60%;
}
.request-cta__image .circle-item:nth-child(3) {
  right: 91%;
  top: 25%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.request-cta__image .circle-item:nth-child(4) {
  right: 93%;
  top: 60%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 1600px) {
  .circle {
    display: none;
  }
  .request-cta__wrapper {
    -ms-grid-columns: 1fr 0.7fr;
    grid-template-columns: 1fr 0.7fr;
    gap: 1rem;
  }
  .request-cta__image {
    padding-right: 1rem;
  }
  .request-cta__image img {
    margin: 0 auto;
  }
}
@media (max-width: 1230px) {
  .request-cta__offer {
    padding: 0rem 1rem 0rem 2rem;
  }
  .request-cta__offer h2 {
    font-size: 1.5rem;
  }
  .request-cta__image:after {
    bottom: -40px;
  }
  .request-cta__image img {
    max-width: 350px;
  }
}
@media (max-width: 740px) {
  .request-cta__wrapper {
    background-image: url(../images/dist/offer-bg-s.jpg);
    background-position: center center;
    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;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .request-cta__offer {
    padding: 2rem 1rem 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.reviews__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 1fr;
  grid-template-columns: 0.8fr 1fr;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49.48%, #f9f9f9), to(rgba(249, 249, 249, 0)));
  background: linear-gradient(180deg, #f9f9f9 49.48%, rgba(249, 249, 249, 0) 100%);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  gap: 4rem;
}
.reviews__wrapper .reviews__txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  gap: 2rem;
  padding: 3em 0 3em 3em;
}
.reviews__wrapper .reviews__txt .reviews__txt-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.reviews__wrapper .reviews__txt .reviews__txt-header h4 {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 4rem);
  line-height: 112%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.reviews__wrapper .reviews__txt .reviews__txt-body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.reviews__wrapper .reviews__txt .reviews__txt-body p {
  font-size: 1.25rem;
  line-height: 120%;
}
.reviews__wrapper .review-slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 580px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.reviews__wrapper .review-slider__wrapper:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 9;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper {
  background-image: url(../images/dist/iphone-mockup.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 466px;
  height: 100%;
  margin: 0;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .custom-pagination {
  width: 112px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 32px;
  border: 1px solid #c0c0c0;
  border-radius: 16px;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #cbcbcb;
  border: 1px solid #747474;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .custom-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent-primary);
  border: 1px solid var(--color-accent-primary);
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide {
  padding: 6rem 2.5rem 3rem;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .slide-wrapper {
  height: 100%;
  background-color: var(--color-bg-primary);
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .user div {
  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.5rem;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .user span:nth-child(1) {
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  color: #212121;
  margin-bottom: -0.5rem;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .user span:nth-child(2) {
  font-weight: 400;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  color: #212121;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide p {
  padding: 1rem 0;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 125%;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  color: var(--color-text-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide a:hover {
  color: var(--color-accent-primary);
}
.reviews__wrapper .review-slider__wrapper .front-img {
  width: 370px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: -3rem;
  padding-right: 1rem;
  position: relative;
  z-index: 9;
}

@media (max-width: 1400px) {
  .reviews__wrapper {
    gap: 1rem;
  }
  .reviews__wrapper .review-slider__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reviews__wrapper .review-slider__wrapper .front-img {
    display: none;
  }
}
@media (max-width: 1280px) {
  .reviews__wrapper .review-slider__wrapper {
    height: 430px;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide {
    padding: 6rem 2rem 3rem;
  }
}
@media (max-width: 960px) {
  .reviews__wrapper .reviews__txt {
    padding: 2rem 0 2rem 2rem;
  }
}
@media (max-width: 760px) {
  .reviews__wrapper {
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reviews__wrapper .reviews__txt {
    padding: 2rem 0 0;
    text-align: center;
  }
  .reviews__wrapper .reviews__txt .reviews__txt-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reviews__wrapper .reviews__txt .reviews__txt-body {
    display: none;
  }
  .reviews__wrapper .review-slider__wrapper {
    margin-top: 1rem;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper {
    height: 450px;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .reviews__wrapper {
    background-image: url(../images/dist/review-xs-bg.svg);
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
  .reviews__wrapper .review-slider__wrapper {
    margin: 0;
    width: 100%;
    display: block;
  }
  .reviews__wrapper .review-slider__wrapper:after {
    content: none;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper {
    background-image: none;
    width: auto;
    height: auto;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-wrapper {
    margin-bottom: 3rem;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .custom-pagination {
    bottom: 16px;
    z-index: 10;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide {
    padding: 1rem;
  }
  .reviews__wrapper .review-slider__wrapper .reviews__swiper .swiper-slide .slide-wrapper {
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.services__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 2rem 0;
}

.services-item {
  position: relative;
}
.services-item h3, .services-item p {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.services-item:nth-child(1) figure figcaption {
  background: rgba(66, 45, 35, 0.5);
}
.services-item:nth-child(2) figure figcaption {
  background: rgba(157, 146, 141, 0.7);
}
.services-item:nth-child(3) figure figcaption {
  background: rgba(61, 143, 155, 0.7);
}
.services-item:hover > h3 {
  -webkit-transform: translateY(-24px);
      -ms-transform: translateY(-24px);
          transform: translateY(-24px);
  opacity: 0;
}
.services-item:hover figure img {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.services-item:hover figcaption {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.services-item:hover figcaption .card-header {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.services-item > h3 {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 1rem 2rem;
  z-index: 1;
}
.services-item figure {
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  height: 690px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.services-item figure img {
  border-radius: 8px;
  height: 690px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(48px);
      -ms-transform: translateY(48px);
          transform: translateY(48px);
  -webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}
.services-item figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  border-radius: 8px;
  -webkit-transform: translateY(48px);
      -ms-transform: translateY(48px);
          transform: translateY(48px);
  -webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 0;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.services-item figure figcaption .card-header {
  -webkit-transform: translateY(24px);
      -ms-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.services-item figure figcaption .card-header h3 {
  font-weight: 700;
  font-size: 2.38rem;
  line-height: 116%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.services-item figure figcaption .card-header p {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
}
.services-item figure figcaption .card-header p span {
  font-weight: 800;
}
.services-item figure figcaption .card-footer {
  color: var(--color-bg-primary);
  font-size: 1.2rem;
}
.services-item figure figcaption .card-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem 0 2rem;
}
.services-item figure figcaption .card-advantages p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.services-item figure figcaption .card-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.services-item figure figcaption .card-btns a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding: 0.5rem 1rem;
}

@media (max-width: 1600px) {
  .services-item figure figcaption .card-footer {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .services-item > h3 {
    padding: 1rem;
  }
  .services-item figure figcaption {
    padding: 1rem;
  }
}
@media (max-width: 1280px) {
  .services-swiper {
    overflow: visible;
  }
  .services__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services-item {
    width: auto;
  }
  .services-item:hover h3 {
    opacity: 1;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .services-item:nth-child(1) figure figcaption {
    background: -webkit-gradient(linear, left bottom, left top, from(#b87757), color-stop(60%, rgba(124, 81, 60, 0)));
    background: linear-gradient(360deg, #b87757 0%, rgba(124, 81, 60, 0) 60%);
  }
  .services-item:nth-child(2) figure figcaption {
    background: -webkit-gradient(linear, left bottom, left top, from(#422d23), color-stop(60%, rgba(157, 146, 141, 0)));
    background: linear-gradient(360deg, #422d23 0%, rgba(157, 146, 141, 0) 60%);
  }
  .services-item:nth-child(3) figure figcaption {
    background: -webkit-gradient(linear, left bottom, left top, from(#2e474b), color-stop(60%, rgba(133, 179, 186, 0)));
    background: linear-gradient(360deg, #2e474b 0%, rgba(133, 179, 186, 0) 60%);
  }
  .services-item figure {
    height: 550px;
    -webkit-transform: translateY(48px);
        -ms-transform: translateY(48px);
            transform: translateY(48px);
    position: relative;
  }
  .services-item figure img {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    -o-object-position: bottom;
       object-position: bottom;
    height: 550px;
  }
  .services-item figure figcaption {
    opacity: 1;
    height: 550px;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .services-item figure figcaption .card-header {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .services-item figure figcaption .card-header h3 {
    display: none;
  }
  .services-item figure figcaption .card-header p {
    position: absolute;
    right: 2px;
    color: var(--color-accent-primary);
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
}
@media (max-width: 760px) {
  .services__wrapper {
    gap: 0;
  }
  .services-item h3 {
    position: relative;
    text-align: center;
  }
  .services-item figure {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .services-item figure img {
    height: 100%;
  }
  .services-item figure figcaption .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-item figure figcaption .card-footer .card-advantages {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 1rem 0;
  }
  .services-item figure figcaption .card-footer .card-advantages p {
    font-size: 0.88rem;
    gap: 8px;
  }
  .services-item figure figcaption .card-footer p {
    font-size: 1rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .services-item figure figcaption .card-footer .card-btns {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 2rem 0 0;
  }
}
.team {
  background: url(../images/dist/team-xl.jpg);
  background-size: cover;
  background-position: top right;
}

.team__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.6fr 1fr;
  grid-template-columns: 0.6fr 1fr;
}
.team__wrapper .team__info {
  color: var(--color-white);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  padding: 7rem 0;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  position: relative;
}
.team__wrapper .team__info h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 112%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.team__wrapper .team__info p {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 330px;
}
.team__wrapper .team__info p + p {
  margin-top: 1rem;
}
.team__wrapper .team__img {
  margin-left: -13.5rem;
  margin-right: -2rem;
}
.team__wrapper .team__img img {
  background-size: cover;
}
.team__wrapper .team__img .team__img-s {
  display: none;
}

@media (max-width: 1420px) {
  .team__wrapper .team__info {
    padding: 5rem 3rem;
  }
  .team__wrapper .team__info h3 {
    font-size: 2rem;
  }
  .team__wrapper .team__img .team__img-s {
    display: none;
  }
}
@media (max-width: 1330px) {
  .team {
    background: url(../images/dist/team-m.jpg);
    background-size: cover;
    background-position: bottom center;
    height: 1020px;
  }
  .team__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .team__wrapper .team__info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .team__wrapper .team__info p {
    max-width: 100%;
  }
  .team__wrapper .team__info .fill-btn {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (max-width: 1180px) {
  .team {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 820px;
  }
  .team .container {
    height: 100%;
  }
  .team__wrapper .team__info {
    padding: 2rem 0;
    margin: 0;
    gap: 1rem;
  }
  .team__wrapper .team__info h3 {
    font-size: 2rem;
    max-width: 480px;
  }
  .team__wrapper .team__info p {
    max-width: 480px;
    font-size: 1rem;
  }
  .team__wrapper .team__info p + p {
    margin-top: 0.1rem;
  }
  .team__wrapper .team__img {
    display: none;
  }
}
@media (max-width: 980px) {
  .team {
    height: 700px;
  }
  .team__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .team__wrapper .team__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team__wrapper .team__info h3 {
    font-size: 1.42rem;
  }
  .team__wrapper .team__info p {
    max-width: 100%;
  }
  .team__wrapper .team__info .fill-btn {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media (max-width: 760px) {
  .team {
    background-image: url(../images/dist/team-xs-bg.jpg);
    background-size: cover;
    background-position: 80% 70%;
    height: 700px;
  }
  .team__wrapper .team__info {
    padding: 2rem 0;
    height: 100%;
  }
  .team__wrapper .team__info h3 {
    font-size: 1.5rem;
  }
  .team__wrapper .team__info p {
    font-size: 1rem;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
  }
  .team__wrapper .team__info .fill-btn {
    margin-top: auto;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (max-width: 450px) {
  .team {
    height: 770px;
  }
  .team__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
  }
}
.work h3 {
  font-weight: 700;
  font-size: 2.38rem;
  line-height: 111%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

.work__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.37fr 1fr;
  grid-template-columns: 0.37fr 1fr;
  gap: 1rem;
  padding: 4rem 0 4rem;
}
.work__wrapper .work-person {
  position: relative;
  border-radius: 8px;
  height: 590px;
}
.work__wrapper .work-person .work-person-bg {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.work__wrapper .work-person figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem 2rem;
  gap: 0.2rem;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.work__wrapper .work-person figcaption p {
  color: #fff;
}
.work__wrapper .work-person figcaption p:nth-child(1) {
  font-weight: 600;
  font-size: 1.38rem;
  letter-spacing: 0.02em;
}
.work__wrapper .work-swiper {
  width: 100%;
  height: 100%;
  padding-top: 20px;
}
.work__wrapper .work-swiper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.work__wrapper .work-swiper .swiper-slide:nth-child(1) {
  background-image: url(../images/dist/work-slide-1.jpg);
}
.work__wrapper .work-swiper .swiper-slide:nth-child(2) {
  background-image: url(../images/dist/work-slide-2.jpg);
}
.work__wrapper .work-swiper .swiper-slide:nth-child(3) {
  background-image: url(../images/dist/work-slide-3.jpg);
}
.work__wrapper .work-swiper .slider-content {
  padding: 0 0 6rem 3rem;
}
.work__wrapper .work-swiper .slider-content span {
  font-weight: 100;
  font-size: 6rem;
  letter-spacing: 0.01em;
  color: #ff6100;
}
.work__wrapper .work-swiper .slider-content h4 {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.work__wrapper .work-swiper .slider-content p {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0.03em;
  max-width: 420px;
}
.work__wrapper .work-swiper .swiper-pagination {
  bottom: 3rem;
  left: 3rem;
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.work__wrapper .work-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  margin: 0;
}
.work__wrapper .work-swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid #fff;
  background-color: var(--color-accent-primary);
}

@media (max-width: 1366px) {
  .work__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .work__wrapper .work-person {
    display: none;
  }
  .work__wrapper .work-swiper {
    height: 500px;
  }
  .work__wrapper .work-swiper .swiper-slide {
    background-position: right center;
  }
}
@media (max-width: 1280px) {
  .work h3 {
    font-size: 1.5rem;
  }
  .work__wrapper {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .work {
    padding-bottom: 2rem;
  }
  .work-header {
    position: sticky;
    top: 80px;
  }
  .work__wrapper {
    padding: 1rem 0 0;
  }
  .work__wrapper .work-swiper {
    height: auto;
    overflow: visible;
  }
  .work__wrapper .work-swiper .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1rem;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .work__wrapper .work-swiper .swiper-slide {
    position: sticky;
    height: auto;
    min-height: 65vh;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    background-size: cover;
    background-position: bottom left;
  }
  .work__wrapper .work-swiper .swiper-slide:nth-child(1) {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(27.85%, #3d2513), to(rgba(203, 193, 178, 0))), url(../images/dist/work-slide-1-s.jpg);
    background-image: linear-gradient(360deg, #3d2513 27.85%, rgba(203, 193, 178, 0) 100%), url(../images/dist/work-slide-1-s.jpg);
    top: 150px;
    z-index: 1;
  }
  .work__wrapper .work-swiper .swiper-slide:nth-child(2) {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(27.85%, #3d2513), to(rgba(203, 193, 178, 0))), url(../images/dist/work-slide-2-s.jpg);
    background-image: linear-gradient(360deg, #3d2513 27.85%, rgba(203, 193, 178, 0) 100%), url(../images/dist/work-slide-2-s.jpg);
    top: 150px;
    z-index: 2;
  }
  .work__wrapper .work-swiper .swiper-slide:nth-child(3) {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(27.85%, #3d2513), to(rgba(203, 193, 178, 0))), url(../images/dist/work-slide-3-s.jpg);
    background-image: linear-gradient(360deg, #3d2513 27.85%, rgba(203, 193, 178, 0) 100%), url(../images/dist/work-slide-3-s.jpg);
    top: 150px;
    z-index: 3;
  }
  .work__wrapper .work-swiper .swiper-slide .slider-content {
    padding: 1rem;
    color: var(--color-white);
  }
  .work__wrapper .work-swiper .swiper-slide .slider-content span {
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-align: justify;
    color: #fff;
  }
  .work__wrapper .work-swiper .swiper-slide .slider-content h4 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 110%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: justify;
  }
  .work__wrapper .work-swiper .swiper-pagination {
    display: none;
  }
}