@charset "UTF-8";

@font-face {
  font-family: "Archivo-Medium";
  src:
    url("../fonts/Archivo-Medium.woff2") format("woff2"),
    url("../fonts/Archivo-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Archivo-SemiBold";
  src:
    url("../fonts/Archivo-SemiBold.woff2") format("woff2"),
    url("../fonts/Archivo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OverusedGrotesk-Bold";
  src:
    url("../fonts/OverusedGrotesk-Bold.woff2") format("woff2"),
    url("../fonts/OverusedGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OverusedGrotesk-Regular";
  src:
    url("../fonts/OverusedGrotesk-Regular.woff2") format("woff2"),
    url("../fonts/OverusedGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OverusedGrotesk-SemiBold";
  src:
    url("../fonts/OverusedGrotesk-SemiBold.woff2") format("woff2"),
    url("../fonts/OverusedGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu,
    "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB",
    "Microsoft Yahei UI", "Microsoft Yahei", "Source Han Sans CN", sans-serif;
  --ff-heading-md: "Archivo-Medium", var(--default-font-family);
  --ff-heading-sb: "Archivo-SemiBold", var(--default-font-family);
  --ff-body-reg: "OverusedGrotesk-Regular", var(--default-font-family);
  --ff-body-sb: "OverusedGrotesk-SemiBold", var(--default-font-family);
  --ff-body-bd: "OverusedGrotesk-Bold", var(--default-font-family);
  /* Colors */
  --white: #fff;
  --black: #000;
  /* Text colors */
  --text-primary: #000;
  --text-deep: #0b123e;
  --text-primary-hover: #2a57f0;
  --text-white: #fff;
  /* Background colors */
  --bg-primary: #dfe2e9;
  --bg-white: #fff;
  --bg-deep-900: #0b123e;
  --bg-accent-500: #2a57f0;
  --bg-muted-500: #4e5484;
  --bg-accent-100: #e1e7ff;
  /* Decorative lines */
  --line-white: #fff;
  --line-muted: #4e5585;
  /* Z-index */
  --z-index-behind: -2;
  --z-index-default: 0;
  --z-index-above: 2;
  --z-index-dropdown: 100;
  --z-index-modal: 1000;
  /* Clip-path sizes */
  --clip-corner-sm: clamp(2rem, calc(1.1rem + 3.5vw), 6.875rem);
  --clip-corner-lg: calc(var(--clip-corner-sm) * 1.55);
}

html {
  font-size: 100%; /* 16px */
}
body {
  font-family: var(--ff-body-reg);
  font-size: clamp(1rem, calc(0.962rem + 0.188vw), 1.188rem); /* 19px */
  color: var(--text-primary);
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
}
:is(h1, h2, h3, h4, h5, h6) {
  line-height: 1.2;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:is(:link, :visited) {
  color: inherit;
  transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-block-end: solid 1px;
}
a:hover {
  color: var(--text-primary-hover);
  border-block-end-color: transparent;
}
:is(a, button, [role="button"]):focus-visible {
  outline: 0.111rem dashed var(--text-primary-hover);
  outline-offset: 0.222rem;
}
a.cta-link {
  --_color: var(--text-white);
  --_background: var(--black);
  --_border: var(--black);
  --_hover-color: var(--text-white);
  --_hover-background: var(--bg-accent-500);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 3.5rem;
  padding-block: 0.75rem;
  padding-inline: clamp(1.75rem, calc(1.45rem + 1.5vw), 3.25rem);
  overflow: hidden;
  isolation: isolate;
  border: 0.0625rem solid var(--_border);
  color: var(--_color);
  background-color: var(--_background);
  font-family: var(--ff-body-reg);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0.25rem 0.875rem rgb(0 0 0 / 0.08);
  transition:
    color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    -webkit-transform 250ms ease;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}
a.cta-link::before {
  content: "";
  position: absolute;
  inset-block: -100%;
  inset-inline-end: -15%;
  z-index: var(--z-index-behind);
  inline-size: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--_hover-background);
  opacity: 0;
  -webkit-transform: translateX(80%) scale(0.15);
  transform: translateX(80%) scale(0.15);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition:
    opacity 200ms ease,
    -webkit-transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition:
    transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 200ms ease;
  transition:
    transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 200ms ease,
    -webkit-transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
a.cta-link:hover,
a.cta-link:focus-visible {
  color: var(--_hover-color);
  border-color: var(--_hover-background);
  box-shadow: 0 0.5rem 1.25rem rgb(0 0 0 / 0.14);
  -webkit-transform: translateY(-0.125rem);
  transform: translateY(-0.125rem);
}
a.cta-link:hover::before,
a.cta-link:focus-visible::before {
  opacity: 1;
  -webkit-transform: translateX(0) scale(3.5);
  transform: translateX(0) scale(3.5);
}
a.cta-link:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
a.cta-link:focus-visible {
  outline: 0.125rem dashed var(--text-primary-hover);
  outline-offset: 0.25rem;
}
a.cta-link__dark {
  --_background: var(--black);
  --_border: var(--black);
  --_hover-background: var(--bg-accent-500);
}
a.cta-link__brand {
  --_background: var(--bg-accent-500);
  --_border: var(--bg-accent-500);
  --_hover-color: var(--text-primary);
  --_hover-background: var(--bg-white);
}
@media screen and (max-width: 575px) {
  a.cta-link {
    min-block-size: 3.25rem;
    padding-inline: 1.5rem;
  }
}
p {
  color: inherit;
  text-wrap: pretty;
  line-height: 1.6;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  inline-size: 100%;
  overflow-x: clip;
}
@media screen and (min-width: 1921px) {
  .container-fluid-custom {
    max-inline-size: 1440px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
  .container-fluid-custom {
    padding-inline: max(1rem, 8%);
    max-inline-size: none;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid-custom {
    padding-inline: 1rem;
    max-inline-size: none;
  }
}
a.skip-link {
  position: absolute;
  inset-block-start: -3.333rem;
  inset-inline-start: 50%;
  background: var(--text-primary-hover);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: inset-block-start 0.3s;
}
a.skip-link:focus {
  inset-block-start: 1.667rem;
}
.section-py {
  padding-block: clamp(3.75rem, calc(3.125rem + 3.125vw), 6.875rem);
}
.img-object-cover {
  object-fit: cover;
}
.section-bg__neutral {
  background-color: var(--bg-primary);
}
.section-bg__deep {
  background-color: var(--bg-deep-900);
}
.section-bg__white {
  background-color: var(--bg-white);
}

.title-box {
  position: relative;
  color: inherit;
}
.text-white .title-box {
  color: var(--white);
}
.title-box > * {
  position: relative;
  font-family: var(--ff-heading-sb);
  text-wrap: balance;
  line-height: 1.2em;
}
.title-box :is(h1, h2) {
  font-size: clamp(2.25rem, calc(1.825rem + 2.125vw), 4.375rem);
}

/* Clip-Path */

.custom-clip-path__sm {
  --clip-corner-size: var(--clip-corner-sm);
}
.custom-clip-path__lg {
  --clip-corner-size: var(--clip-corner-lg);
}
.custom-clip-path__top-left {
  -webkit-clip-path: polygon(
    var(--clip-corner-size) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 var(--clip-corner-size)
  );
  clip-path: polygon(
    var(--clip-corner-size) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 var(--clip-corner-size)
  );
}
.custom-clip-path__top-right {
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--clip-corner-size)) 0,
    100% var(--clip-corner-size),
    100% 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--clip-corner-size)) 0,
    100% var(--clip-corner-size),
    100% 100%,
    0 100%
  );
}

/* Header ............................................................... */

.header {
  --ml-size: clamp(14rem, calc(10.5rem + 7vw), 23.75rem);
  --nav-fs: clamp(1rem, calc(0.9rem + 0.25vw), 1.25rem);
  --header-action-size: clamp(2.25rem, calc(2.05rem + 0.625vw), 2.75rem);
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  padding-block: clamp(0.75rem, calc(0.55rem + 0.75vw), 1.5rem) 0;
  z-index: var(--z-index-modal);
  will-change: transform;
}
.header.scroll {
  position: fixed;
  padding-block: 0.5rem 0;
  -webkit-box-shadow: 0 0.75rem 0.375rem -0.375rem rgb(0 0 0 / 0.05);
  box-shadow: 0 0.75rem 0.375rem -0.375rem rgb(0 0 0 / 0.05);
  -webkit-animation: animateNav 0.4s linear;
  animation: animateNav 0.4s linear;
}
@-webkit-keyframes animateNav {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes animateNav {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header-bar {
  inline-size: 100%;
  min-block-size: clamp(5rem, calc(4.5rem + 1.5vw), 6.5rem);
  gap: clamp(1rem, calc(0.75rem + 1.25vw), 2.5rem);
}
.main-logo {
  position: relative;
  flex: 0 1 var(--ml-size);
  inline-size: var(--ml-size);
  max-inline-size: 23.75rem;
  z-index: var(--z-index-dropdown);
}
.main-logo.scroll {
  flex-basis: calc(var(--ml-size) / 1.25);
  inline-size: calc(var(--ml-size) / 1.25);
}
.main-logo > a,
.main-logo img {
  display: block;
}
.main-logo.scroll > a {
  position: relative;
  inset: auto;
  -webkit-transform: none;
  transform: none;
}
.main-logo img {
  inline-size: 100%;
  block-size: auto;
}
.header-content {
  flex: 0 1 auto;
  gap: clamp(1.5rem, calc(0.5rem + 2.75vw), 4.5rem);
  min-inline-size: 0;
}
.header-actions {
  gap: 0.333rem;
  flex: 0 0 auto;
  z-index: var(--z-index-dropdown);
}
.header-actions a.header-action {
  inline-size: var(--header-action-size);
  block-size: var(--header-action-size);
  background-color: var(--bg-white);
  transition:
    background-color 300ms ease,
    -webkit-transform 300ms ease;
  transition:
    background-color 300ms ease,
    transform 300ms ease;
  transition:
    background-color 300ms ease,
    transform 300ms ease,
    -webkit-transform 300ms ease;
}
.header-actions a.header-action:hover,
.header-actions a.header-action:focus-visible {
  background-color: var(--bg-accent-500);
  -webkit-transform: translateY(-0.125rem);
  transform: translateY(-0.125rem);
}
.header-actions .header-action img {
  display: block;
  inline-size: 90%;
  block-size: 90%;
  object-fit: contain;
  filter: invert(1);
  -webkit-filter: invert(1);
  transition:
    filter 320ms ease,
    -webkit-filter 320ms ease;
}
.header-actions .header-action:hover img,
.header-actions .header-action:focus-visible img {
  filter: invert(0);
  -webkit-filter: invert(0);
}
.header-actions a.header-action:focus-visible {
  outline: 0.125rem dashed var(--text-primary-hover);
  outline-offset: 0.25rem;
}
.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  align-items: center;
  gap: clamp(1rem, calc(0.5rem + 1.65vw), 3rem);
}
.mainNavigation .nav-link {
  position: relative;
  padding: 0 !important;
  color: var(--text-primary) !important;
  font-family: var(--ff-body-sb);
  font-size: var(--nav-fs);
  line-height: 1.3;
  white-space: nowrap;
  border-block-end: 0;
}
.mainNavigation .dropdown-toggle::after {
  display: none;
}
.mainNavigation .nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation .nav-link span::after {
  content: "";
  position: absolute;
  inset-block-end: -0.3rem;
  inset-inline-start: 50%;
  inline-size: 0;
  block-size: 0.0625rem;
  background-color: var(--bg-accent-500);
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition:
    inline-size 300ms ease,
    opacity 300ms ease;
}
.mainNavigation .nav-link.hi span::after,
.mainNavigation .nav-link:is(:hover, :focus-visible) span::after {
  inline-size: 100%;
  opacity: 1;
}
.mainNavigation li.dropdown .nav-link:hover span::after {
  display: none;
}
.mainNavigation .dropdown-menu {
  display: block;
  min-inline-size: 18rem;
  margin-block-start: 0.75rem;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  transition:
    opacity 300ms ease,
    visibility 300ms step-end,
    -webkit-transform 300ms ease;
  transition:
    opacity 300ms ease,
    visibility 300ms step-end,
    transform 300ms ease;
  transition:
    opacity 300ms ease,
    visibility 300ms step-end,
    transform 300ms ease,
    -webkit-transform 300ms ease;
}
.mainNavigation .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition:
    opacity 300ms ease,
    visibility 0ms step-start,
    -webkit-transform 300ms ease;
  transition:
    opacity 300ms ease,
    visibility 0ms step-start,
    transform 300ms ease;
  transition:
    opacity 300ms ease,
    visibility 0ms step-start,
    transform 300ms ease,
    -webkit-transform 300ms ease;
}
.mainNavigation .dropdown-item {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  color: var(--text-white);
  font-size: var(--nav-fs);
  background-color: var(--bg-deep-900);
  border-block-end: 0.0625rem solid
    color-mix(in srgb, var(--line-white) 25%, transparent);
  transition:
    color 250ms ease,
    background-color 250ms ease,
    padding-inline 250ms ease;
}
.mainNavigation .dropdown-item:last-child {
  border-block-end: 0;
}
.mainNavigation .dropdown-item.hi,
.mainNavigation .dropdown-item:is(:hover, :focus-visible) {
  color: var(--text-white);
  background-color: var(--bg-accent-500);
  padding-inline-start: 1.25rem;
}
#navtoggler {
  display: none;
}
.offcanvas-menu {
  --offcanvas-fs: clamp(1.125rem, calc(1rem + 0.625vw), 1.5rem);
  position: fixed;
  inset: 0 auto 0 0;
  inline-size: min(100%, 31rem);
  min-block-size: 100dvh;
  padding: 1.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text-white);
  background-color: var(--bg-deep-900);
  z-index: var(--z-index-modal);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  transition:
    -webkit-transform 400ms ease,
    transform 400ms ease;
  will-change: transform;
}
.offcanvas-menu.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.offcanvas-nav .dropdown-toggle::after {
  content: none;
}

/* Hero ............................................................... */

.hero-section {
  --hero-gap: clamp(0.75rem, calc(0.6875rem + 0.3125vw), 1.0625rem);
  --hero-block-size: clamp(42rem, 47vw, 55rem);
  --hero-content-padding: clamp(1.25rem, calc(1.1rem + 0.75vw), 1.875rem);
  position: relative;
  padding-block: var(--hero-content-padding);
  overflow: hidden;
}
.hero-section__inner {
  position: relative;
  min-block-size: var(--hero-block-size);
  overflow: visible;
  isolation: isolate;
}
.hero-section__line {
  position: absolute;
  inset-block: calc(-1 * var(--hero-content-padding));
  z-index: var(--z-index-default);
  inline-size: 0.0625rem;
  background-color: color-mix(in srgb, var(--line-white) 75%, transparent);
  pointer-events: none;
}
.hero-section__line__first {
  inset-inline-start: 33.333%;
}
.hero-section__line__second {
  inset-inline-start: 66.666%;
}
.hero-section__corner {
  position: absolute;
  inset-block-end: calc(-1 * var(--hero-content-padding));
  inset-inline-start: 50%;
  z-index: var(--z-index-default);
  inline-size: clamp(15rem, 23vw, 26.875rem);
  aspect-ratio: 1;
  background-color: var(--bg-white);
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  -webkit-transform: translateX(-115%);
  transform: translateX(-115%);
  pointer-events: none;
}
.hero-section__heading {
  position: relative;
  z-index: var(--z-index-above);
  max-inline-size: 66.666%;
  padding-block: clamp(2.5rem, calc(1.25rem + 4vw), 6rem);
  padding-inline-end: var(--hero-gap);
}
.hero-section__heading h1 {
  font-family: var(--ff-heading-sb);
  font-size: clamp(3.25rem, calc(1.9rem + 4.25vw), 7.1875rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-section__heading h1 span {
  color: var(--bg-accent-500);
}
.hero-section__content {
  position: absolute;
  inset-block-end: clamp(3rem, 6vw, 7rem);
  inset-inline-start: 0;
  z-index: var(--z-index-above);
  inline-size: calc(33.333% - var(--hero-gap));
  padding-inline-end: clamp(1rem, calc(0.5rem + 1.75vw), 3rem);
}
.hero-section__paragraph {
  max-inline-size: 28rem;
  margin-block-start: clamp(2rem, calc(1.35rem + 2vw), 4rem);
}
.hero-section__paragraph p {
  margin: 0;
  font-size: clamp(1.125rem, calc(1rem + 0.5vw), 1.75rem);
  line-height: 1.45;
}
.hero-section__media {
  position: absolute;
  z-index: var(--z-index-above);
  overflow: hidden;
}
.hero-section__media picture,
.hero-section__media img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
}
.hero-section__media__center {
  inset-block-end: var(--hero-gap);
  inset-inline-start: calc(33.333% + var(--hero-gap));
  inline-size: calc(33.333% - var(--hero-gap) * 2);
  block-size: 52%;
}
.hero-section__media__side {
  inset-block: var(--hero-gap);
  inset-inline-end: 0;
  inline-size: calc(33.333% - var(--hero-gap));
}
.hero-section__media__side .we_button {
    position: absolute;
    right: 0;
    bottom: 0;
}

.hero-section__subpage {
  --subpage-hero-block-size: clamp(18rem, 24vw, 24rem);
  position: relative;
  padding-block: clamp(0.375rem, calc(0.3125rem + 0.125vw), 0.5rem);
  overflow: hidden;
}
.hero-section__subpage-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  block-size: var(--subpage-hero-block-size);
  max-block-size: 24rem;
  overflow: hidden;
}
.hero-section__subpage-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(0.75rem, calc(0.625rem + 0.5vw), 1.25rem);
  padding-inline-end: clamp(1rem, calc(0.75rem + 1vw), 2rem);
}
.hero-section__subpage-heading h1 {
  font-family: var(--ff-heading-sb);
  font-size: clamp(2.25rem, calc(1.85rem + 1.25vw), 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-section__subpage-heading h1 span {
  color: var(--bg-accent-500);
}
.hero-section__subpage-paragraph {
  max-inline-size: 32rem;
  margin-block: clamp(0.75rem, calc(0.6875rem + 0.25vw), 1rem) 0;
  font-size: clamp(1rem, calc(0.9625rem + 0.125vw), 1.125rem);
  line-height: 1.5;
}
.hero-section__subpage-media {
  min-inline-size: 0;
  min-block-size: 0;
  block-size: 100%;
  overflow: hidden;
}
.hero-section__subpage-media picture,
.hero-section__subpage-media img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
}

/* Main-Content ............................................................... */

.content-divider {
  --divider-color: var(--line-muted);
  --divider-width: 0.0625rem;
  border-color: var(--divider-color);
  border-style: solid;
  border-width: 0;
}
.content-divider__top {
  border-block-start-width: var(--divider-width);
}
.content-divider__bottom {
  border-block-end-width: var(--divider-width);
}
.content-divider__muted {
  --divider-color: var(--line-muted);
}
.content-divider__light {
  --divider-color: var(--bg-white);
}

/* Offer */

.offer-section {
  --offer-padding-block: clamp(2.188rem, calc(1.938rem + 1.25vw), 3.438rem);
  --offer-card-padding: clamp(1.25rem, calc(1rem + 1vw), 2.25rem);
  --offer-gap: clamp(0.625rem, calc(0.55rem + 0.25vw), 0.9375rem);
  --offer-plus-size: clamp(2.25rem, calc(2.05rem + 0.625vw), 2.75rem);
  position: relative;
  padding-block: var(--offer-padding-block)
    calc(var(--offer-padding-block) * 2.2);
  overflow: hidden;
  background-color: var(--bg-deep-900);
}
.offer-section__top {
  position: relative;
}
.offer-section__top::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 50%;
  inline-size: 0.0625rem;
  background-color: var(--line-muted);
  pointer-events: none;
}
.offer-section__heading,
.offer-section__paragraph {
  padding-block: clamp(1.5rem, calc(1.15rem + 1.5vw), 2.75rem);
}
.offer-section__heading {
  padding-inline-end: clamp(1rem, calc(0.75rem + 1vw), 2rem);
}
.offer-section__heading .title-box h2 {
  font-size: clamp(2.25rem, calc(1.95rem + 1.5vw), 3.75rem);
}
.offer-section__paragraph {
  max-inline-size: 36rem;
  margin-inline-start: auto;
  padding-inline-start: clamp(2rem, calc(1.1rem + 3vw), 5rem);
}
.offer-section__paragraph p {
  margin: 0;
  line-height: 1.5;
}
.offer-section__carousel {
  margin-block-start: clamp(2.5rem, calc(1.6rem + 3vw), 5.5rem);
}
.offer-section__carousel .owl-stage {
  display: flex;
}
.offer-section__carousel .owl-item {
  display: flex;
}
.offer-section__carousel .item {
  display: flex;
  inline-size: 100%;
}
a.offer-section__card {
  display: flex;
  flex-direction: column;
  inline-size: 100%;
  min-inline-size: 0;
  overflow: hidden;
  color: var(--text-primary);
  background-color: transparent;
  border-block-end: 0;
  isolation: isolate;
  transition:
    box-shadow 300ms ease,
    -webkit-transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition:
    transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 300ms ease;
  transition:
    transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 300ms ease,
    -webkit-transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.offer-section__card-content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  min-block-size: 20rem;
  padding: var(--offer-card-padding);
  background-color: var(--bg-white);
  transition:
    color 300ms ease,
    background-color 300ms ease;
}
.offer-section__title {
  max-inline-size: 25ch;
  color: var(--bg-accent-500);
  font-family: var(--ff-body-sb);
  font-size: clamp(1rem, calc(0.975rem + 0.125vw), 1.125rem);
  line-height: 1.35;
  text-transform: uppercase;
  transition: color 300ms ease;
}
.offer-section__title h3 {
  font: inherit;
}
.offer-section__description {
  margin-block-start: clamp(1.5rem, calc(1.25rem + 0.75vw), 2.25rem);
}
.offer-section__description p {
  margin: 0;
  font-family: var(--ff-heading-md);
  font-size: clamp(1.375rem, calc(1.2rem + 0.625vw), 1.875rem);
  line-height: 1.25;
  text-wrap: balance;
}
.offer-section__plus {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: var(--offer-plus-size);
  block-size: var(--offer-plus-size);
  flex: 0 0 var(--offer-plus-size);
  margin-block-start: auto;
  margin-inline-start: auto;
  color: var(--text-white);
  background-color: var(--bg-accent-500);
  transition:
    color 300ms ease,
    background-color 300ms ease,
    -webkit-transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offer-section__plus-symbol {
  --plus-line-size: 0.0625rem;
  position: relative;
  display: block;
  inline-size: 45%;
  block-size: 45%;
  color: currentColor;
}
.offer-section__plus-symbol::before,
.offer-section__plus-symbol::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: var(--plus-line-size);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.offer-section__plus-symbol::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.offer-section__media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.offer-section__media picture,
.offer-section__media img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
}
.offer-section__media img {
  -webkit-transform: scale(1.001);
  transform: scale(1.001);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition:
    filter 400ms ease,
    -webkit-transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition:
    transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
  transition:
    transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease,
    -webkit-transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
a.offer-section__card:hover,
a.offer-section__card:focus-visible {
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.22);
  -webkit-transform: translateY(-0.375rem);
  transform: translateY(-0.375rem);
}
a.offer-section__card:hover .offer-section__card-content,
a.offer-section__card:focus-visible .offer-section__card-content {
  color: var(--text-white);
  background-color: var(--bg-accent-500);
}
a.offer-section__card:hover .offer-section__title,
a.offer-section__card:focus-visible .offer-section__title {
  color: var(--text-white);
}
a.offer-section__card:hover .offer-section__plus,
a.offer-section__card:focus-visible .offer-section__plus {
  color: var(--bg-accent-500);
  background-color: var(--bg-white);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
a.offer-section__card:hover .offer-section__media img,
a.offer-section__card:focus-visible .offer-section__media img {
  filter: brightness(0.88) contrast(1.06);
  -webkit-transform: scale(1.045);
  transform: scale(1.045);
}
a.offer-section__card:focus-visible {
  outline: 0.125rem dashed var(--text-primary-hover);
  outline-offset: 0.25rem;
}
.offer-section__bottom {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, calc(1.1rem + 2vw), 3rem);
  margin-block-start: clamp(3rem, calc(2rem + 3.5vw), 6rem);
}
.offer-section__bottom-line {
  flex: 1 1 auto;
  min-inline-size: 2rem;
  block-size: 0.0625rem;
  background-color: var(--line-muted);
}
.owl-navigation {
  --owl-dim: clamp(2.25rem, calc(2.15rem + 0.5vw), 2.75rem);
  display: flex;
  flex: 0 0 auto;
  gap: clamp(0.4rem, calc(0.35rem + 0.25vw), 0.65rem);
}
.owl-navigation .btn {
  display: grid;
  place-items: center;
  inline-size: var(--owl-dim);
  block-size: var(--owl-dim);
  padding: 0;
  color: var(--text-white);
  background-color: var(--bg-muted-500);
  border: 0;
  font-size: clamp(1rem, calc(0.95rem + 0.25vw), 1.25rem);
  line-height: 1;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    -webkit-transform 200ms ease;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease,
    -webkit-transform 200ms ease;
}
.owl-navigation .btn:hover {
  color: var(--text-primary);
  background-color: var(--bg-white);
  box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 0.14);
  -webkit-transform: translateY(-0.1rem);
  transform: translateY(-0.1rem);
}
.owl-navigation .btn:focus,
.owl-navigation .btn.focus {
  box-shadow: none;
}
.owl-navigation .btn:focus-visible {
  outline: 0.1rem dashed var(--text-primary-hover);
  outline-offset: 0.2rem;
}

/* Price-list */

.price-list-section {
  --price-cell-padding-block: clamp(0.75rem, calc(0.65rem + 0.375vw), 1.125rem);
  --price-cell-padding-inline: clamp(1rem, calc(0.75rem + 1.25vw), 3rem);
  --price-note-icon-size: clamp(3rem, calc(2.75rem + 0.75vw), 3.75rem);
}
.price-list-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(18rem, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}
.price-list-section__top .title-box {
  max-inline-size: 56rem;
}
.price-list-section__title-line {
  white-space: nowrap;
}
.price-list-section__paragraph {
  max-inline-size: 30rem;
  padding-block-start: clamp(0.25rem, 1vw, 0.75rem);
}
.price-list-section__paragraph p {
  margin: 0;
  line-height: 1.5;
}
.price-list-section__bottom {
  margin-block-start: clamp(2.5rem, calc(1.75rem + 2.75vw), 5rem);
}
.price-list-section__table-wrap {
  inline-size: 100%;
  overflow-x: auto;
}
.price-list-section__table {
  inline-size: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.price-list-section__table th,
.price-list-section__table td {
  padding-block: var(--price-cell-padding-block);
  padding-inline: var(--price-cell-padding-inline);
  border-block-end: 0.0625rem solid var(--bg-primary);
  text-align: start;
  vertical-align: middle;
}
.price-list-section__table thead {
  color: var(--text-white);
  background-color: var(--bg-deep-900);
}
.price-list-section__table thead th {
  font-family: var(--ff-body-bd);
  font-weight: bold;
}
.price-list-section__table thead th:first-child {
  inline-size: 48%;
}
.price-list-section__table thead th:nth-child(2) {
  inline-size: 29%;
}
.price-list-section__table thead th:last-child {
  inline-size: 23%;
}
.price-list-section__table tbody th {
  font-family: var(--ff-body-bd);
  font-weight: bold;
  background-color: var(--bg-white);
}
.price-list-section__table tbody td {
  background-color: var(--bg-white);
}
.price-list-section__table tbody tr:nth-child(even) th,
.price-list-section__table tbody tr:nth-child(even) td {
  background-color: var(--bg-accent-100);
}
.price-list-section__table tbody td:last-child {
  color: var(--bg-accent-500);
  font-family: var(--ff-body-bd);
  font-weight: bold;
}
.price-list-section__note {
  display: flex;
  align-items: center;
  gap: clamp(1rem, calc(0.875rem + 0.625vw), 1.75rem);
  margin-block-start: clamp(1.75rem, calc(1.25rem + 1.875vw), 3.5rem);
}
.price-list-section__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: var(--price-note-icon-size);
  block-size: var(--price-note-icon-size);
  flex: 0 0 var(--price-note-icon-size);
  border-radius: 50%;
  color: var(--text-white);
  background-color: var(--bg-accent-500);
  font-size: clamp(1.625rem, calc(1.5rem + 0.375vw), 2rem);
  line-height: 1;
}
.price-list-section__note-icon i {
  line-height: 1;
}
.price-list-section__note-text {
  max-inline-size: 58rem;
}
.price-list-section__note-text p {
  margin: 0;
  line-height: 1.5;
}
.price-list-section__note-text strong {
  font-family: var(--ff-body-bd);
  font-weight: bold;
}

/* Gallery */

.gallery-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(18rem, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}
.gallery-section__top .title-box {
  max-inline-size: 56rem;
}
.gallery-section__paragraph {
  max-inline-size: 28rem;
  padding-block-start: clamp(0.25rem, 1vw, 0.75rem);
}
.gallery-section__paragraph p {
  margin: 0;
  line-height: 1.5;
}
.gallery-section__bottom {
  margin-block-start: clamp(2.5rem, calc(1.75rem + 2.75vw), 5rem);
}
.gallery-grid {
  --gallery-gap: clamp(0.75rem, calc(0.65rem + 0.5vw), 1.25rem);
  --gallery-cell: clamp(3.6rem, calc(3.4rem + 0.9vw), 5.2rem);
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-auto-rows: var(--gallery-cell);
  gap: var(--gallery-gap);
}
a.gallery-grid__item {
  position: relative;
  display: block;
  min-inline-size: 0;
  overflow: hidden;
  border-block-end: 0;
  background-color: var(--bg-primary);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
a.gallery-grid__item picture,
a.gallery-grid__item img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
}
a.gallery-grid__item img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition:
    -webkit-transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 350ms ease;
  transition:
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 350ms ease;
  transition:
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 350ms ease,
    -webkit-transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, filter;
}
a.gallery-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--bg-deep-900) 22%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}
a.gallery-grid__item:hover img,
a.gallery-grid__item:focus-visible img {
  -webkit-transform: scale(1.035);
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}
a.gallery-grid__item:hover::after,
a.gallery-grid__item:focus-visible::after {
  opacity: 1;
}
a.gallery-grid__item:focus-visible {
  outline: 0.15rem solid var(--text-primary-hover);
  outline-offset: 0.25rem;
}
.gallery-grid__a1 {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
}
.gallery-grid__a2 {
  grid-column: 1 / span 4;
  grid-row: 5 / span 4;
}
.gallery-grid__a3 {
  grid-column: 1 / span 4;
  grid-row: 9 / span 4;
}
.gallery-grid__b1 {
  grid-column: 5 / span 4;
  grid-row: 1 / span 8;
}
.gallery-grid__b2 {
  grid-column: 5 / span 4;
  grid-row: 9 / span 4;
}
.gallery-grid__group {
  grid-column: 9 / span 6;
  grid-row: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: var(--gallery-cell);
  gap: var(--gallery-gap);
}
.gallery-grid__c1 {
  grid-column: 1 / -1;
  grid-row: 1 / span 4;
}
.gallery-grid__c2 {
  grid-column: 1 / span 6;
  grid-row: 5 / span 4;
}
.gallery-grid__c3 {
  grid-column: 7 / span 6;
  grid-row: 5 / span 4;
}
.gallery-grid__c4 {
  grid-column: 1 / -1;
  grid-row: 9 / span 4;
}
.gallery-section__action {
  margin-block-start: clamp(2rem, calc(1.5rem + 1.5vw), 3.5rem);
}

/* Process */

.process-section {
  --content-padding-block: clamp(2rem, calc(0.85rem + 3.75vw), 5.5rem);
  --content-padding-inline-end: clamp(2rem, calc(0.4rem + 5vw), 7.5rem);
  --card-gap: clamp(1rem, calc(0.875rem + 0.625vw), 1.5625rem);
  --card-padding: clamp(1.5rem, calc(1.125rem + 1.25vw), 2.75rem);
  --number-size: clamp(3.25rem, calc(2.8rem + 1.5vw), 4.375rem);
  position: relative;
  overflow: hidden;
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  z-index: var(--z-index-default);
  background-color: color-mix(in srgb, var(--line-white) 70%, transparent);
  pointer-events: none;
}
.process-section::before {
  inset-inline: 0;
  inset-block-end: 18%;
  block-size: 0.0625rem;
}
.process-section::after {
  inset-block: 0;
  inset-inline-start: 45.5%;
  inline-size: 0.0625rem;
}
.process-section .container-fluid-custom {
  position: relative;
  z-index: var(--z-index-above);
}
.process-section__content {
  padding-block: var(--content-padding-block);
  padding-inline-end: var(--content-padding-inline-end);
}
.process-section__content .title-box {
  max-inline-size: 35rem;
}
.process-section__paragraph {
  max-inline-size: 32rem;
  margin-block-start: clamp(1.5rem, calc(1.1rem + 1.25vw), 2.75rem);
}
.process-section__paragraph p {
  margin: 0;
}
.process-section__action {
  margin-block-start: clamp(1.75rem, calc(1.15rem + 1.875vw), 3.5rem);
}
.process-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
}
a.process-section__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-inline-size: 0;
  padding: var(--card-padding);
  overflow: hidden;
  isolation: isolate;
  border: 0;
  color: var(--text-primary);
  background-color: var(--bg-white);
  text-decoration: none;
  box-shadow: 0 0.25rem 1rem rgb(11 18 62 / 0.04);
  transition:
    color 300ms ease,
    box-shadow 350ms ease,
    -webkit-transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition:
    color 300ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
a.process-section__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
  background-color: var(--bg-accent-500);
  opacity: 0;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition:
    opacity 300ms ease,
    -webkit-transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition:
    opacity 300ms ease,
    transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition:
    opacity 300ms ease,
    transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
a.process-section__card:hover,
a.process-section__card:focus-visible {
  color: var(--text-white);
  box-shadow: 0 0.875rem 2rem rgb(11 18 62 / 0.15);
  -webkit-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
}
a.process-section__card:hover::before,
a.process-section__card:focus-visible::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
a.process-section__card:focus-visible {
  outline: 0.125rem dashed var(--text-primary-hover);
  outline-offset: 0.25rem;
}
.process-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: var(--number-size);
  block-size: var(--number-size);
  flex: 0 0 var(--number-size);
  border-radius: 50%;
  color: var(--text-white);
  background-color: var(--bg-accent-500);
  font-family: var(--ff-heading-md);
  font-size: clamp(1.25rem, calc(1.1rem + 0.5vw), 1.75rem);
  line-height: 1;
  transition:
    color 300ms ease,
    background-color 300ms ease;
}
a.process-section__card:hover .process-section__number,
a.process-section__card:focus-visible .process-section__number {
  color: var(--bg-accent-500);
  background-color: var(--bg-white);
}
.process-section__card-title {
  margin-block-start: clamp(1.5rem, calc(1.25rem + 0.625vw), 2rem);
}
.process-section__card-title h3 {
  font-family: var(--ff-heading-sb);
  font-size: clamp(1.75rem, calc(1.55rem + 0.625vw), 2.375rem);
  line-height: 1.08;
  text-wrap: balance;
}
.process-section__card-text {
  margin-block-start: clamp(1rem, calc(0.875rem + 0.375vw), 1.375rem);
}
.process-section__card-text p {
  margin: 0;
  line-height: 1.45;
}

/* Footer ............................................................... */

.footer-section {
  --footer-padding-block: clamp(3rem, calc(2.25rem + 1.5vw), 5rem);
  --footer-contact-gap: clamp(1.5rem, calc(1.25rem + 1vw), 3rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer-section__top {
  padding-block: var(--footer-padding-block)
    clamp(2.5rem, calc(2rem + 1.5vw), 4rem);
}
.footer-section__intro {
  max-inline-size: 44rem;
}
.footer-section__headline {
  max-inline-size: 38rem;
}
.footer-section__headline h2 {
  font-family: var(--ff-heading-sb);
  font-size: clamp(2rem, calc(1.75rem + 0.625vw), 2.5rem);
  line-height: 1.15;
  text-wrap: balance;
}
.footer-section__paragraph {
  max-inline-size: 32rem;
  margin-block-start: clamp(1.25rem, calc(1rem + 0.75vw), 2rem);
}
.footer-section__paragraph p {
  margin: 0;
  line-height: 1.5;
}
.footer-section__contacts {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1.5rem, calc(1rem + 1.5vw), 3rem);
  margin-block-start: clamp(2rem, calc(1.5rem + 1.5vw), 3rem);
}
.footer-section__contact-person {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-inline-size: 0;
  gap: clamp(0.875rem, calc(0.75rem + 0.5vw), 1.25rem);
}
.footer-section__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: clamp(2.75rem, calc(2.625rem + 0.375vw), 3.125rem);
  block-size: clamp(2.75rem, calc(2.625rem + 0.375vw), 3.125rem);
  flex: 0 0 auto;
  padding: 0;
  border-radius: 50%;
  background-color: var(--bg-accent-500);
}
.footer-section__phone-icon img {
  display: block;
  inline-size: 85%;
  block-size: 85%;
  filter: none;
}
.footer-section__contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-section__contact-name {
  font-family: var(--ff-body-bd);
}
a.footer-section__phone-number {
  font-size: clamp(1.375rem, calc(1.25rem + 0.375vw), 1.875rem);
  line-height: 1.15;
}
.footer-section__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--footer-contact-gap);
  max-inline-size: 44rem;
  margin-block-start: clamp(2rem, calc(1.5rem + 1.5vw), 3rem);
}
.footer-section__address address {
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}
.footer-section__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-section__form {
  min-block-size: 0;
}
a.footer-link:link,
a.footer-link:visited {
  color: var(--text-white);
  border-block-end-color: currentColor;
}
a.footer-link:hover {
  color: var(--text-primary-hover);
  border-block-end-color: transparent;
}
a.footer-link:focus-visible {
  outline-color: var(--text-primary-hover);
}
.footer-section__bottom-inner {
  padding-block: clamp(1.5rem, calc(1.25rem + 0.75vw), 2rem);
}
.footer-section__bottom-row {
  row-gap: 1rem;
}
.footer-section__bottom-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-section__bottom-links > :not(:last-child) {
  position: relative;
}
.footer-section__bottom-links > :not(:last-child)::after {
  content: "|";
  position: absolute;
  inset-inline-end: -0.625rem;
  color: var(--text-white);
}



/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  .header {
    --ml-size: clamp(12rem, calc(9rem + 5vw), 19rem);
    --nav-fs: clamp(1rem, calc(0.9rem + 0.25vw), 1.25rem);
  }
  .header-content {
    gap: clamp(0.875rem, calc(0.4rem + 1.75vw), 2.75rem);
  }
  .mainNavigation .navbar-nav {
    gap: clamp(0.875rem, calc(0.5rem + 1.1vw), 1.875rem);
  }
}

@media screen and (max-width: 1366px) {
  .hero-section__heading h1 {
    font-size: clamp(3.25rem, 6vw, 5.125rem);
  }
  .hero-section__paragraph p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }
  .process-section::after {
    inset-inline-start: 46%;
  }
}

@media screen and (max-width: 1199px) {
  body.offcanvas-open {
    overflow: hidden;
    touch-action: none;
  }
  .header {
    --ml-size: 12rem;
    padding-block: 0.75rem 0;
  }
  .header-bar {
    min-block-size: 4.5rem;
    gap: 0.75rem;
    flex-wrap: nowrap;
    border-block-start-width: 0;
    border-block-end-width: 0;
  }
  .main-logo {
    flex-basis: var(--ml-size);
    inline-size: var(--ml-size);
    max-inline-size: none;
  }
  .main-logo.scroll {
    flex-basis: var(--ml-size);
    inline-size: var(--ml-size);
  }
  .header-content {
    display: none !important;
  }
  #navtoggler {
    display: flex;
    flex: 0 0 2.25rem;
    align-items: center;
    justify-content: center;
    inline-size: 2.25rem;
    block-size: 2.25rem;
    padding: 0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    inline-size: 1.5rem;
    block-size: 1.125rem;
  }
  .menu-line {
    block-size: 0.125rem;
    background-color: var(--text-primary);
    transition:
      opacity 300ms ease,
      -webkit-transform 300ms ease;
    transition:
      opacity 300ms ease,
      transform 300ms ease;
    transition:
      opacity 300ms ease,
      transform 300ms ease,
      -webkit-transform 300ms ease;
  }
  #offcanvas-glow {
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    block-size: 40dvh;
    pointer-events: none;
  }
  #offcanvas-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      95% 65% at 50% 0%,
      color-mix(in srgb, var(--bg-accent-500) 35%, var(--bg-deep-900)) 0%,
      transparent 75%
    );
    filter: blur(1.875rem);
    opacity: 0.6;
  }
  .offcanvas-header {
    position: relative;
    z-index: 1;
    margin-block-end: 2rem;
  }
  .offcanvas-close {
    position: relative;
    inline-size: 3.25rem;
    block-size: 3.25rem;
    padding: 0;
    background-color: transparent;
    border: 0.09375rem solid var(--white);
    border-radius: 50%;
    transition:
      background-color 250ms ease,
      -webkit-transform 250ms ease;
    transition:
      background-color 250ms ease,
      transform 250ms ease;
    transition:
      background-color 250ms ease,
      transform 250ms ease,
      -webkit-transform 250ms ease;
  }
  .offcanvas-close:is(:hover, :focus-visible) {
    background-color: var(--bg-accent-500);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .offcanvas-close .close-line {
    position: absolute;
    inline-size: 1.125rem;
    block-size: 0.125rem;
    background-color: var(--white);
  }
  .offcanvas-close .close-line:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .offcanvas-close .close-line:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .offcanvas-nav {
    position: relative;
    z-index: 1;
  }
  .offcanvas-list > li {
    margin-block-end: 1.1rem;
  }
  .offcanvas-nav a,
  .offcanvas-nav button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    inline-size: 100%;
    padding: 0;
    color: var(--text-white);
    font-size: var(--offcanvas-fs);
    text-align: start;
    background: none;
    border: 0;
    border-block-end: 0;
    transition: color 200ms ease;
  }
  .offcanvas-nav a.hi,
  .offcanvas-nav button.hi,
  .offcanvas-nav a:is(:hover, :focus-visible),
  .offcanvas-nav button:is(:hover, :focus-visible) {
    color: var(--bg-accent-500);
  }
  .offcanvas-chevron {
    flex: 0 0 auto;
    inline-size: 0.8rem;
    block-size: 0.8rem;
    margin-inline-start: 0.75rem;
    border-inline-end: 0.125rem solid currentColor;
    border-block-end: 0.125rem solid currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition:
      -webkit-transform 300ms ease,
      transform 300ms ease;
  }
  .has-dropdown.open > .dropdown-toggle .offcanvas-chevron {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .dropdown {
    max-block-size: 0;
    padding-block: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    transition:
      max-block-size 360ms ease,
      opacity 200ms ease,
      padding 200ms ease,
      -webkit-transform 200ms ease;
    transition:
      max-block-size 360ms ease,
      opacity 200ms ease,
      padding 200ms ease,
      transform 200ms ease;
    transition:
      max-block-size 360ms ease,
      opacity 200ms ease,
      padding 200ms ease,
      transform 200ms ease,
      -webkit-transform 200ms ease;
  }
  .dropdown.active {
    max-block-size: 125rem;
    padding-block: 1rem 0.25rem;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .dropdown.level-1 > li > a {
    padding-block: 0.65rem;
    font-size: 0.875rem;
    /*text-transform: uppercase;*/
    border-block-end: 0.0625rem solid
      color-mix(in srgb, var(--line-white) 30%, transparent);
  }
  .dropdown.level-1 > li:last-child > a {
    border-block-end: 0;
  }
  .offcanvas-contact {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-block-start: 0.0625rem solid
      color-mix(in srgb, var(--line-white) 30%, transparent);
  }
  .offcanvas-contact__persons {
    display: grid;
    gap: 1rem;
  }
  .offcanvas-contact__person {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }
  .offcanvas-contact__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 2.75rem;
    block-size: 2.75rem;
    flex: 0 0 2.75rem;
    border-radius: 50%;
    background-color: var(--bg-accent-500);
  }
  .offcanvas-contact__phone-icon img {
    display: block;
    inline-size: 85%;
    block-size: 85%;
    object-fit: contain;
    filter: none;
  }
  .offcanvas-contact__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-inline-size: 0;
  }
  .offcanvas-contact__name {
    font-family: var(--ff-body-bd);
    font-size: 0.9375rem;
  }
  .offcanvas-nav a.offcanvas-contact__phone {
    justify-content: flex-start;
    inline-size: fit-content;
    font-size: clamp(1.125rem, calc(1rem + 0.5vw), 1.375rem);
    line-height: 1.2;
    border-block-end: 0.0625rem solid currentColor;
  }
  .offcanvas-contact__details {
    display: grid;
    gap: 0.3rem;
    margin-block: 1.5rem 0;
    color: var(--text-white);
    font-size: 0.875rem;
    font-style: normal;
    line-height: 1.5;
  }
  .offcanvas-contact__details strong {
    margin-block-end: 0.5rem;
    font-family: var(--ff-body-bd);
  }
  .offcanvas-contact__details a {
    justify-content: flex-start;
    inline-size: fit-content;
    font-size: inherit;
    border-block-end: 0.0625rem solid currentColor;
  }
  .hero-section {
    --hero-block-size: clamp(39rem, 54vw, 48rem);
  }
  .hero-section__heading h1 {
    font-size: clamp(3.25rem, 6vw, 5.75rem);
  }
  .hero-section__paragraph p {
    font-size: clamp(1rem, 1.5vw, 1.375rem);
  }
  .price-list-section__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .price-list-section__paragraph {
    max-inline-size: 38rem;
    padding-block-start: 0;
  }
  .process-section::after {
    inset-inline-start: 42%;
  }
  .process-section__content {
    padding-inline-end: clamp(1.5rem, 4vw, 3rem);
  }
  .footer-section__form {
    padding-inline-start: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    padding-block: 1rem 3rem;
    border-block-start: 0.0625rem solid var(--line-white);
  }
  .hero-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--hero-gap);
    min-block-size: 0;
    overflow: visible;
  }
  .hero-section__line,
  .hero-section__corner {
    display: none;
  }
  .hero-section__heading,
  .hero-section__content,
  .hero-section__media {
    position: relative;
    inset: auto;
    inline-size: auto;
    max-inline-size: 100%;
  }
  .hero-section__heading {
    grid-column: 1 / -1;
    padding-block: 1.5rem 0.75rem;
    padding-inline-end: 0;
  }
  .hero-section__heading h1 {
    font-size: clamp(3rem, 9vw, 5.5rem);
  }
  .hero-section__content {
    grid-column: 1 / -1;
    padding-inline-end: 0;
    padding-block: 1rem 2rem;
  }
  .hero-section__paragraph {
    max-inline-size: 38rem;
    margin-block-start: 2rem;
  }
  .hero-section__media__center,
  .hero-section__media__side {
    aspect-ratio: 4 / 5;
    block-size: auto;
  }
  .hero-section__subpage {
    border-block-start: 0.0625rem solid var(--line-white);
  }
  .hero-section__subpage-inner {
    grid-template-columns: 1fr;
    block-size: auto;
    max-block-size: none;
    overflow: visible;
  }
  .hero-section__subpage-heading {
    padding-block: 1.5rem;
    padding-inline-end: 1.5rem;
  }
  .hero-section__subpage-heading h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }
  .hero-section__subpage-paragraph {
    margin-block-start: 0.875rem;
    font-size: 1rem;
  }
  .hero-section__subpage-media {
    aspect-ratio: 16 / 7;
  }
  .offer-section__top::after {
    display: none;
  }
  .offer-section__heading,
  .offer-section__paragraph {
    padding-inline: 0;
  }
  .offer-section__heading {
    padding-block-end: 1rem;
  }
  .offer-section__paragraph {
    max-inline-size: 38rem;
    margin-inline-start: 0;
    padding-block-start: 0;
  }
  .offer-section__card-content {
    min-block-size: 18rem;
  }
  .price-list-section__table thead th:first-child {
    inline-size: 42%;
  }
  .gallery-section__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gallery-section__paragraph {
    max-inline-size: 38rem;
    padding-block-start: 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .gallery-grid__group {
    display: contents;
  }
  .gallery-grid__a1,
  .gallery-grid__a2,
  .gallery-grid__a3,
  .gallery-grid__b1,
  .gallery-grid__b2,
  .gallery-grid__c2,
  .gallery-grid__c3 {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-grid__b1,
  .gallery-grid__c1,
  .gallery-grid__c4 {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  a.gallery-grid__item {
    aspect-ratio: 16 / 9;
  }
  .process-section::before {
    inset-block-end: 12%;
  }
  .process-section::after {
    inset-inline-start: 1rem;
  }
  .process-section__content {
    padding-block: 0 clamp(2.5rem, 8vw, 4.5rem);
    padding-inline-end: 0;
  }
  .process-section__grid {
    max-inline-size: 48rem;
  }
  [class*="paragraph"] {
    max-inline-size: 100%;
  }
  .footer-section__form:not(:empty) {
    margin-block-start: clamp(2rem, calc(1.5rem + 1.5vw), 3rem);
  }
  .footer-section__form {
    margin-block-start: clamp(3rem, calc(2.25rem + 3vw), 5rem);
    padding-inline-start: 0;
  }
  .mainForm .input--textarea {
    margin-block-start: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .offer-section__title {
    max-inline-size: 100%;
  }
  .offer-section__bottom {
    flex-wrap: wrap;
  }
  .offer-section__bottom-line {
    order: 3;
    flex-basis: 100%;
  }
  .price-list-section__table-wrap {
    margin-inline: -1rem;
    inline-size: calc(100% + 2rem);
    overflow: visible;
  }
  .price-list-section__table,
  .price-list-section__table thead,
  .price-list-section__table tbody,
  .price-list-section__table tr,
  .price-list-section__table th,
  .price-list-section__table td {
    display: block;
  }
  .price-list-section__table thead {
    position: absolute;
    inline-size: 0.0625rem;
    block-size: 0.0625rem;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .price-list-section__table tbody {
    display: grid;
    gap: 1rem;
  }
  .price-list-section__table tbody tr {
    padding-block-end: 0.5rem;
    background-color: var(--bg-white);
  }
  .price-list-section__table tbody th {
    padding-block: 0.875rem;
    padding-inline: 1rem;
    border-block-end: 0;
    color: var(--text-white);
    background-color: var(--bg-deep-900);
  }
  .price-list-section__table tbody td {
    position: relative;
    min-block-size: 3rem;
    padding-block: 0.75rem;
    padding-inline: 1rem;
    padding-inline-start: min(52%, 12rem);
    border-block-end: 0.0625rem solid var(--bg-primary);
    background-color: var(--bg-white);
  }
  .price-list-section__table tbody td::before {
    content: attr(data-title);
    position: absolute;
    inset-block-start: 0.75rem;
    inset-inline-start: 1rem;
    inline-size: min(45%, 10rem);
    color: var(--text-deep);
    font-family: var(--ff-body-bd);
    font-weight: bold;
  }
  .price-list-section__table tbody tr:nth-child(even) th {
    background-color: var(--bg-deep-900);
  }
  .price-list-section__table tbody tr:nth-child(even) td {
    background-color: var(--bg-accent-100);
  }
  .price-list-section__note {
    align-items: flex-start;
  }
  .gallery-grid {
    display: flex;
    flex-direction: column;
  }
  .gallery-grid__group {
    display: contents;
  }
  a.gallery-grid__item {
    aspect-ratio: 4 / 3;
  }
  .footer-section__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-section__contact-person {
    flex: 0 1 auto;
  }
  .footer-section__details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mainForm .formular_button {
    inline-size: 100%;
    min-inline-size: 0;
  }
}

@media screen and (max-width: 575px) {
  .offcanvas-menu {
    padding-inline: 1.25rem;
  }
  .hero-section__inner {
    grid-template-columns: 1fr;
  }
  .hero-section__heading h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }
  .hero-section__media__center,
  .hero-section__media__side {
    grid-column: 1;
    aspect-ratio: 4 / 3;
  }
  .hero-section__subpage-inner {
    grid-template-columns: 1fr;
  }
  .hero-section__subpage-heading {
    padding-block: 1rem;
    padding-inline-end: 1rem;
  }
  .hero-section__subpage-heading h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .hero-section__subpage-paragraph {
    margin-block-start: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .hero-section__subpage-media {
    aspect-ratio: 16 / 9;
  }
  .offer-section__bottom {
    justify-content: space-between;
  }
  .offer-section__bottom a.cta-link {
    flex: 1 1 auto;
  }
  .price-list-section__title-line {
    white-space: normal;
  }
  .process-section::before,
  .process-section::after {
    display: none;
  }
  .process-section__grid {
    grid-template-columns: 1fr;
  }
  a.process-section__card {
    min-block-size: auto;
  }
}

@media screen and (max-width: 480px) {
  .price-list-section__table tbody td {
    display: grid;
    gap: 0.25rem;
    padding-inline-start: 1rem;
  }
  .price-list-section__table tbody td::before {
    position: static;
    inline-size: auto;
  }
  .price-list-section__note {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
