/*
Theme name: tconcrete
Author: Dmitry Petin
Author URI: http://behance.net/dmitrypetin
Version: 1.0.0
Text Domain: tconcrete.ru
*/
@font-face {
  font-family: "GolosText";
  src: url("../fonts/GolosText-Regular.woff2") format("woff2"), url("../fonts/GolosText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "GolosText";
  src: url("../fonts/GolosText-Medium.woff2") format("woff2"), url("../fonts/GolosText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "GolosText";
  src: url("../fonts/GolosText-SemiBold.woff2") format("woff2"), url("../fonts/GolosText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "GolosText";
  src: url("../fonts/GolosText-Bold.woff2") format("woff2"), url("../fonts/GolosText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
:root {
  --tc-color-yellow: #F7D21E;
  --tc-color-white: #ffffff;
  --tc-color-black: #000000;
  --tc-color-grey: #BFBFBF;
  --tc-color-dark: #919191;
  --tc-offset: 2rem;
  --tc-block-offset-lg: 20rem;
  --tc-block-offset-sm: 14rem;
}

@media (max-width: 1023px) {
  :root {
    --tc-offset: 1.6rem;
    --tc-block-offset-lg: 8rem;
    --tc-block-offset-sm: 6rem;
  }
}
@keyframes tc-hide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tc-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tc-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tc-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tc-fade-in-up {
  0% {
    opacity: 0;
    transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fade-in {
  animation-name: tc-fade-in;
  animation-duration: 250ms;
  animation-fill-mode: forwards;
}

.fade-in-up {
  animation-name: tc-fade-in-up;
  animation-duration: 250ms;
  animation-fill-mode: forwards;
}

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

*:focus,
*:active {
  outline: none;
}

html {
  font-family: "GolosText", sans-serif;
}

body {
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

svg {
  fill: currentColor;
}

a {
  color: inherit;
}

hr {
  height: 0;
  border: none;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-size: 100%;
  font-family: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=number] {
  -moz-appearance: textfield;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

html {
  color: var(--tc-color-black);
  font-size: 0.5208333333vw;
  line-height: 1.5;
  background-color: var(--tc-color-white);
}

html, body {
  height: 100%;
}

strong, b {
  font-weight: 600;
}

@media (max-width: 1023px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body.lock {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .site__main {
    padding-top: 6.4rem;
  }
}
.main {
  color: var(--tc-color-black);
  background-color: var(--tc-color-white);
  transition: color 0.6s, background-color 0.6s;
}
.main--black {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}

.cover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100dvw;
  height: 100dvh;
  background: var(--tc-color-black);
  opacity: 0;
  pointer-events: none;
}

.container {
  padding: 0 2rem;
}

.logo {
  display: block;
  aspect-ratio: 19/4;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  display: inline-flex;
  justify-content: center;
  transition: opacity 0.25s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn:hover, .btn:disabled {
  opacity: 0.5;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn--lg {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  padding: 2rem 4.5rem;
}
.btn--black {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}
.btn--clean {
  color: var(--tc-color-grey);
  background-color: transparent;
}

.btn-reset {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-outline {
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: none;
  border: 0.1rem solid currentColor;
  display: inline-flex;
  justify-content: center;
  transition: opacity 0.25s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn-outline:hover, .btn-outline:disabled {
  opacity: 0.5;
}
.btn-outline:disabled {
  cursor: not-allowed;
}
.btn-outline--lg {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  padding: 1.9rem 3.9rem;
}

@media (max-width: 1023px) {
  .btn:hover {
    opacity: 1;
  }
  .btn:disabled {
    opacity: 0.5;
  }
  .btn-outline:hover {
    opacity: 1;
  }
  .btn-outline:disabled {
    opacity: 0.5;
  }
}
.btn-ovl {
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn-ovl.is-lock, .btn-ovl.is-disabled {
  display: none;
  visibility: hidden;
}

.btn-back {
  display: flex;
  transition: opacity 0.25s;
}
.btn-back:hover {
  opacity: 0.5;
}
.btn-back--black {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}
.btn-back--white {
  color: var(--tc-color-black);
  background-color: var(--tc-color-white);
}
.btn-back--xl {
  width: 12.8rem;
  height: 12.8rem;
  padding: 3.2rem;
}
.btn-back--lg {
  width: 9.6rem;
  height: 9.6rem;
}
.btn-back--md {
  width: 6.4rem;
  height: 6.4rem;
  padding: 1.2rem;
}
.btn-back--sm {
  width: 3.2rem;
  height: 3.2rem;
}

@media (max-width: 1023px) {
  .btn-back:hover {
    opacity: initial;
  }
}
/* .home-block__sound {
  border: none;
  display: block;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}
.home-block__sound::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 3.2rem 3.2rem;
  background-color: currentColor;
}
.home-block__sound--mute::after {
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMS4yIiBkPSJNMjEgMTFjMS4yNyAxLjMyIDEuOTkgMy4xMiAyIDQuOTkgMCAxLjg3LS43IDMuNjctMS45NiA1LjAxTTI1IDhjMS45MSAyLjEyIDIuOTkgNC45OSAzIDcuOTkuMDEgMy0xLjA1IDUuODgtMi45NCA4LjAxIi8+PHBhdGggZD0iTTE1IDYuNjZ2MTguNjhjMCAxLjQ2LS43OSAxLjc2LTEuNzUuNjZsLTQuOC01LjQ5Yy0uMjUtLjI4LS43NS0uNTctMS4xMS0uNjRsLTEuMzktLjI4Yy0xLjYyLS4zMi0yLjk0LTEuOTQtMi45NC0zLjU5czEuMzItMy4yNiAyLjk0LTMuNTlsMS4zOS0uMjhjLjM3LS4wNy44Ny0uMzYgMS4xMS0uNjRMMTMuMjUgNmMuOTYtMS4xIDEuNzUtLjgxIDEuNzUuNjZ6Ii8+PC9zdmc+');
}
.home-block__sound--unmute::after {
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZD0iTTE1IDYuNjZ2MTguNjhjMCAxLjQ2LS43OSAxLjc2LTEuNzUuNjZsLTQuOC01LjQ5Yy0uMjUtLjI4LS43NS0uNTctMS4xMS0uNjRsLTEuMzktLjI4Yy0xLjYyLS4zMi0yLjk0LTEuOTQtMi45NC0zLjU5czEuMzItMy4yNiAyLjk0LTMuNTlsMS4zOS0uMjhjLjM3LS4wNy44Ny0uMzYgMS4xMS0uNjRMMTMuMjUgNmMuOTYtMS4xIDEuNzUtLjgxIDEuNzUuNjZ6Ii8+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMS4yIiBkPSJtMjAgMTIgOCA4bS04IDAgOC04Ii8+PC9zdmc+');
} */
.js-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
}
.js-cursor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 16rem;
  height: 16rem;
  margin-top: -8rem;
  margin-left: -8rem;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 300ms, opacity 300ms;
  background-color: var(--tc-color-black);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8rem 8rem;
  opacity: 0;
}
.js-cursor--prev::before {
  opacity: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MCA4MCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik00MCA3MiA4IDQwIDQwIDhtMzIgMzJIOCIvPjwvc3ZnPg==");
  transform: scale(1);
}
.js-cursor--next::before {
  opacity: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MCA4MCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im00MCA4IDMyIDMyLTMyIDMyTTggNDBoNjQiLz48L3N2Zz4=");
  transform: scale(1);
}

.icon {
  display: block;
  flex-shrink: 0;
  fill: currentColor;
  stroke: currentColor;
  transition: transform 0.25s;
}
.icon--lg {
  width: 2.4rem;
  height: 2.4rem;
}
.icon--fill {
  width: 100%;
  height: 100%;
}

.jicon {
  display: block;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: currentColor;
  flex-shrink: 0;
}
.jicon--fill {
  width: 100%;
  height: 100%;
}
.jicon--lg {
  width: 2.4rem;
  height: 2.4rem;
}
.jicon--sm {
  width: 2rem;
  height: 2rem;
}
.jicon--plus {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNOSAxdjE2TTEgOWgxNiIvPjwvc3ZnPg==");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNOSAxdjE2TTEgOWgxNiIvPjwvc3ZnPg==");
}
.jicon--close {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNMTYgMiAyIDE2bTE0IDBMMiAyIi8+PC9zdmc+");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNMTYgMiAyIDE2bTE0IDBMMiAyIi8+PC9zdmc+");
}
.jicon--down {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjQiIGQ9Ik01NiAzNCAzMiA1OCA4IDM0TTMyIDZ2NTIiLz48L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjQiIGQ9Ik01NiAzNCAzMiA1OCA4IDM0TTMyIDZ2NTIiLz48L3N2Zz4=");
}

.icon-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-plus::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.2rem;
  background: currentColor;
  transition: transform 0.5s;
}
.icon-plus::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.2rem;
  height: 100%;
  background: currentColor;
  transition: transform 0.5s;
}

.is-open .icon-plus::before {
  transform: rotate(90deg);
}

.is-open .icon-plus::after {
  transform: rotate(180deg);
}

.icon-success path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  stroke-dasharray: 24px;
  stroke-dashoffset: 24px;
  transition: stroke-dashoffset 0.25s;
}

.sent .icon-success path {
  stroke-dashoffset: 0;
}

.link {
  transition: opacity 0.25s;
}
.link:hover {
  opacity: 0.5;
}

.icon-link {
  display: inline-flex;
  transition: opacity 0.25s;
  text-decoration: none;
}
.icon-link:hover {
  opacity: 0.5;
}
.icon-link--xl {
  gap: 1.2rem;
  font-size: 2rem;
  line-height: 2.8rem;
}
.icon-link--xl .icon, .icon-link--xl i {
  width: 2.4rem;
  height: 2.8rem;
}
.icon-link--md {
  gap: 2.2rem;
  font-size: 6rem;
  line-height: 7rem;
  letter-spacing: -0.04em;
}
.icon-link--md .icon, .icon-link--md i {
  width: 6.4rem;
  height: 7rem;
}
.icon-link--sm {
  gap: 1.2rem;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.02em;
}
.icon-link--sm .icon, .icon-link--sm i {
  width: 4rem;
  height: 5rem;
}
.icon-link--xs {
  gap: 1.2rem;
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: -0.02em;
}
.icon-link--xs .icon, .icon-link--xs i {
  width: 4rem;
  height: 4rem;
}
.icon-link--text-lg {
  gap: 1.2rem;
  font-size: 2rem;
  line-height: 2.8rem;
}
.icon-link--text-lg .icon, .icon-link--text-lg i {
  width: 2.4rem;
  height: 2.8rem;
}

@media (max-width: 1023px) {
  .icon-link:hover {
    opacity: initial;
  }
  .icon-link--md {
    gap: 1.2rem;
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
  }
  .icon-link--md .icon, .icon-link--md i {
    width: 3rem;
    height: 3rem;
  }
  .icon-link--xs {
    gap: 0.8rem;
    font-size: 2rem;
    line-height: 2.6rem;
    letter-spacing: initial;
  }
  .icon-link--xs .icon, .icon-link--xs i {
    width: 2.6rem;
    height: 2.6rem;
  }
  .icon-link--text-lg {
    gap: 0.8rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .icon-link--text-lg .icon, .icon-link--text-lg i {
    width: 1.6rem;
    height: 2rem;
  }
}
.route-link {
  text-decoration: none;
  gap: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  transition: opacity 0.25s;
}
.route-link:hover {
  opacity: 0.5;
}
.route-link__icon {
  width: 4rem;
  height: 4rem;
}

@media (max-width: 1023px) {
  .route-link {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .route-link:hover {
    opacity: initial;
  }
  .route-link__icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.title {
  font-weight: 400;
}
.title em {
  color: var(--tc-color-yellow);
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}
.title--xl {
  font-size: calc(12rem * var(--ratio-lg, 1));
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.title--lg {
  font-size: 8rem;
  line-height: 9rem;
  letter-spacing: -0.04em;
}
.title--md {
  font-size: 6rem;
  line-height: 7rem;
  letter-spacing: -0.04em;
}
.title--sm {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.02em;
}
.title--xs {
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: -0.02em;
}

@media (max-width: 1023px) {
  .title--xl {
    font-size: calc(4rem * var(--ratio-sm, 1));
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .title--lg {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.02em;
  }
  .title--md {
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
  }
  .title--sm {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: initial;
  }
  .title--xs {
    font-size: 2rem;
    line-height: 2.6rem;
    letter-spacing: initial;
  }
}
.text--xl {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
}
.text--lg {
  font-size: 2rem;
  line-height: 2.8rem;
}
.text--md {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.text--sm {
  font-size: 1.6rem;
  line-height: 2rem;
}
.text--xs {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

@media (max-width: 1023px) {
  .text--lg {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .text--md {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .text--sm {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.article > h1,
.article > h2,
.article > h3,
.article > h4,
.article > h5,
.article > h6 {
  margin: 8rem 0rem 4rem;
}
.article > ul,
.article > ol {
  max-width: 85%;
  margin: 4rem 0rem;
}
.article > p {
  max-width: 85%;
  margin: 2.8rem 0rem;
}
.article > figure {
  margin: 8rem 0rem;
}
.article h1 {
  font-size: 12rem;
  font-weight: 400;
  line-height: 12rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.article h2 {
  font-size: 8rem;
  font-weight: 400;
  line-height: 9rem;
  letter-spacing: -0.04em;
}
.article h3 {
  font-size: 6rem;
  font-weight: 400;
  line-height: 7rem;
  letter-spacing: -0.04em;
}
.article h4 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: -0.04em;
}
.article h5, .article h6 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: -0.02em;
}
.article p {
  font-size: 2rem;
  line-height: 2.8rem;
}
.article ul,
.article ol {
  font-size: 2rem;
  line-height: 2.8rem;
  padding-left: 1.25em;
}
.article li {
  margin: 0.25em 0em;
}
.article img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.article a:not([class]) {
  color: #1D73F5;
  transition: opacity 0.25s;
}
.article a:not([class]):hover {
  opacity: 0.5;
}
.article figure {
  gap: 2rem;
  display: grid;
}
.article figcaption {
  max-width: 85%;
  font-size: 1.6rem;
  line-height: 2rem;
}
.article blockquote {
  max-width: 85%;
  margin: 8rem 0rem;
  padding: 2rem 0rem 2rem 4rem;
  border-left: 0.1rem solid var(--tc-color-dark);
}
.article blockquote p {
  margin: 0.25em 0em;
}
.article__linked {
  margin: 4rem 0rem;
}
.article__include {
  margin: 8rem 0rem;
}
.article__contain {
  margin: 4rem 0rem;
}
.article *:first-child {
  margin-top: 0rem;
}
.article *:last-child {
  margin-bottom: 0rem;
}

@media (max-width: 1023px) {
  .article > h1,
  .article > h2,
  .article > h3,
  .article > h4,
  .article > h5,
  .article > h6 {
    margin: 4rem 0rem 2rem;
  }
  .article > ul,
  .article > ol {
    max-width: 100%;
    margin: 2rem 0rem;
  }
  .article > p {
    max-width: 100%;
    margin: 2rem 0rem;
  }
  .article > figure {
    margin: 4rem 0rem;
  }
  .article h1 {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .article h2 {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.02em;
  }
  .article h3 {
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
  }
  .article h4 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: initial;
  }
  .article h5, .article h6 {
    font-size: 2rem;
    line-height: 2.6rem;
    letter-spacing: initial;
  }
  .article p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .article ul,
  .article ol {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .article a:not([class]):hover {
    opacity: initial;
  }
  .article figure {
    gap: 1rem;
  }
  .article figcaption {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .article blockquote {
    max-width: 100%;
    margin: 4rem 0rem;
    padding: 1rem 0rem 1rem 1.6rem;
  }
  .article__linked {
    margin: 2rem 0rem;
  }
  .article__include {
    margin: 4rem 0rem;
  }
  .article__contain {
    margin: -1rem 0rem 2rem;
  }
}
.article-unified {
  font-size: 6rem;
  line-height: 7rem;
  letter-spacing: -0.04em;
}
.article-unified > h1,
.article-unified > h2,
.article-unified > h3,
.article-unified > h4,
.article-unified > h5,
.article-unified > h6,
.article-unified > ul,
.article-unified > ol,
.article-unified > p {
  margin: 8rem 0rem;
}
.article-unified h1,
.article-unified h2,
.article-unified h3,
.article-unified h4,
.article-unified h5,
.article-unified h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.article-unified ul,
.article-unified ol {
  padding-left: 1.25em;
}
.article-unified li {
  margin: 0.25em 0rem;
}
.article-unified a {
  color: #1D73F5;
  transition: opacity 0.25s;
}
.article-unified a:hover {
  opacity: 0.5;
}
.article-unified > *:first-child {
  margin-top: 0rem;
}
.article-unified > *:last-child {
  margin-bottom: 0rem;
}

@media (max-width: 1023px) {
  .article-unified {
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
  }
  .article-unified > h1,
  .article-unified > h2,
  .article-unified > h3,
  .article-unified > h4,
  .article-unified > h5,
  .article-unified > h6,
  .article-unified > ul,
  .article-unified > ol,
  .article-unified > p {
    margin: 4rem 0rem;
  }
  .article-unified a:hover {
    opacity: initial;
  }
}
.phone {
  word-spacing: 0.1em;
}

.grid {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.grid__aside {
  grid-column: 1/4;
}
.grid__main {
  grid-column: 4/10;
}

.table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.table__row {
  animation: tc-fade 0.25s;
  border-bottom: 0.1rem solid var(--tc-color-black);
}
.table__col {
  vertical-align: top;
  padding: 2rem 2rem 2rem 0;
}

.table a {
  color: #1D73F5;
  transition: opacity 0.25s;
}

.table a:hover {
  opacity: 0.5;
}

.table ul,
.table ol {
  padding-left: 1.25em;
}

.offset-sm {
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.offset-lg {
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.offset-top-sm {
  margin-top: 14rem;
}

.offset-top-lg {
  margin-top: 20rem;
}

.offset-bottom-sm {
  margin-bottom: 14rem;
}

.offset-bottom-lg {
  margin-bottom: 20rem;
}

@media (max-width: 1023px) {
  .offset-sm {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .offset-lg {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
  .offset-top-sm {
    margin-top: 6rem;
  }
  .offset-top-lg {
    margin-top: 8rem;
  }
  .offset-bottom-sm {
    margin-bottom: 6rem;
  }
  .offset-bottom-lg {
    margin-bottom: 8rem;
  }
}
.block:first-of-type {
  margin-top: 0rem;
}
.block:last-of-type {
  margin-bottom: 0rem;
}
.block__head {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block__head-aside {
  grid-column: 1/4;
}
.block__head-main {
  grid-column: 4/-1;
}
.block__head-label {
  display: block;
  padding: 2rem 0;
}
.block__head-link {
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .block__head {
    grid-template-columns: 1fr;
  }
  .block__head-aside, .block__head-main {
    grid-column: auto;
  }
  .block__head-label {
    padding: 0rem;
  }
  .block__head-link {
    margin-top: 3rem;
  }
}
.letter__word {
  display: inline-flex;
  overflow: hidden;
}
.letter__char {
  position: relative;
  display: inline-block;
}
.letter__char::before {
  content: attr(data-letter);
  position: absolute;
  top: -150%;
  left: 0;
}

.spinner {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  animation: tc-fade 2s;
}
.spinner img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.spinner img:nth-of-type(2) {
  animation: tc-spinner 60s infinite normal linear;
}
.spinner img:nth-of-type(3) {
  animation: tc-spinner 90s infinite reverse linear;
}
.spinner img:nth-of-type(4) {
  animation: tc-spinner 120s infinite normal linear;
}

.social__list {
  list-style: none;
  gap: 4rem;
  display: flex;
  flex-wrap: wrap;
}
.social__item {
  font-size: 1.8rem;
  line-height: 2.6rem;
}

/* .contacts {
  &__list {
    list-style: none;
    gap: 4rem;
    display: flex;
    flex-wrap: wrap;
  }
  &__item {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  &__link {
    &--mail {
      text-decoration: underline;
    }
  }
} */
.dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 128rem;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  transform: translate(100%, 0);
}
.dialog__inner {
  width: 100%;
  height: 100%;
  padding-left: 8rem;
  padding-right: var(--tc-offset);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.dialog__head {
  gap: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.dialog__head-title {
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
}
.dialog__head-back {
  gap: 1rem;
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: left;
  max-width: 56rem;
}
.dialog__head-back:hover {
  opacity: 0.5;
}
.dialog__head-back::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTIgMTZoMjhNMTQgNCAyIDE2bDEyIDEyIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: cover;
}
.dialog__head-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21rem;
  height: 21rem;
  background: #000000;
  margin-right: -2rem;
}
.dialog__head-close:hover {
  opacity: 0.5;
}
.dialog__head-close::after, .dialog__head-close::before {
  content: "";
  width: 0.2rem;
  height: 9.5rem;
  display: block;
  background: #919191;
}
.dialog__head-close::after {
  transform: rotate(-45deg);
}
.dialog__head-close::before {
  transform: rotate(45deg);
}
.dialog__body {
  padding: 0 20rem 6rem 0;
}
.dialog__footer {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 4.5rem;
}
.dialog__contact-head {
  margin-bottom: 2rem;
}
.dialog__contact-title {
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.dialog__contact-body {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dialog__contact-link {
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.dialog__social {
  padding: 0.2rem 0;
  margin-left: auto;
}
.dialog__social-list {
  list-style: none;
  gap: 4rem;
  display: flex;
}
.dialog__social-link {
  color: #919191;
  font-size: 2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

@media (max-width: 1023px) {
  .dialog {
    width: 100%;
  }
  .dialog__inner {
    padding-left: var(--tc-offset);
    padding-right: var(--tc-offset);
  }
  .dialog__head-title {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: initial;
  }
  .dialog__head-back {
    gap: 0.8rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .dialog__head-back:hover {
    opacity: initial;
  }
  .dialog__head-back::before {
    content: "";
    width: 2.4rem;
    height: 2.4rem;
  }
  .dialog__head-close {
    width: 6.4rem;
    height: 6.4rem;
    margin-right: -1.6rem;
  }
  .dialog__head-close::after, .dialog__head-close::before {
    height: 4rem;
  }
  .dialog__body {
    padding: 2rem 0 4rem;
  }
  .dialog__footer {
    gap: 2rem;
    align-items: initial;
    flex-direction: column;
    padding-bottom: 2rem;
  }
  .dialog__contact-head {
    margin-bottom: 0.6rem;
  }
  .dialog__contact-title {
    font-size: 1.4rem;
    letter-spacing: initial;
  }
  .dialog__contact-body {
    gap: 0.6rem;
  }
  .dialog__contact-link {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: initial;
  }
  .dialog__social {
    padding: 0rem;
    margin-left: 0rem;
  }
  .dialog__social-list {
    gap: 2.4rem;
    justify-content: space-between;
  }
  .dialog__social-link {
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: initial;
  }
}
.burger-menu__list {
  list-style: none;
  gap: 2rem 0rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.burger-menu ul ul {
  display: none;
}
.burger-menu__link {
  text-decoration: none;
  font-size: 6rem;
  line-height: 7rem;
  letter-spacing: -0.04em;
}
.burger-menu__sublist {
  list-style: none;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
.burger-menu__sublink {
  text-decoration: none;
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: -0.02em;
}
.burger-menu .menu-item-has-children > a {
  gap: 1.2rem;
  display: inline-flex;
  align-items: center;
}
.burger-menu .menu-item-has-children > a::after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTggMTAgNCA2aDhsLTQgNHoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
}

@media (max-width: 1023px) {
  .burger-menu__list {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .burger-menu__link {
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
  }
  .burger-menu__sublist {
    gap: 1rem;
  }
  .burger-menu__sublink {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: initial;
  }
  .burger-menu .menu-item-has-children > a::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: #000000;
  opacity: 0;
  pointer-events: none;
}

/* .dialog {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 998;
  overflow-y: auto;
  background-color: #fff;
  display: none;
  &.is-open {
    display: block;
  }
  &__inner {
    height: 100%;
    width: calc(100% - 48px);
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
} */
.breadcrumbs {
  font-size: 1.4rem;
  line-height: 2rem;
}
.breadcrumbs__divider {
  opacity: 0.25;
}
.breadcrumbs__link {
  opacity: 0.25;
  transition: opacity 0.25s;
  text-decoration: none;
}
.breadcrumbs__link:hover, .breadcrumbs__link--active {
  opacity: 1;
}

.author {
  gap: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.author__avatar {
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
}
.author__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.author__info {
  gap: 0.4rem;
  display: grid;
}
.author__info-name {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.author__info-post {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.slider-media {
  min-width: 0;
  position: relative;
}
.slider-media__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-media__swiper-prev {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.slider-media__swiper-next {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1023px) {
  .slider-media__slide img {
    aspect-ratio: 2/3;
  }
  .slider-media__swiper-prev, .slider-media__swiper-next {
    display: none;
  }
}
.slider-article__paging {
  margin-top: 2rem;
}
.slider-article__swiper-prev {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.slider-article__swiper-next {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1023px) {
  .slider-article__paging {
    margin-top: 1rem;
  }
  .slider-article__swiper-prev, .slider-article__swiper-next {
    display: none;
  }
}
.video-article__embed {
  aspect-ratio: 16/9;
  background-color: var(--tc-color-black);
}
.video-article__embed iframe {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}
.video-article__under {
  margin-top: 2rem;
}

@media (max-width: 1023px) {
  .video-article__under {
    margin-top: 1rem;
  }
}
.file__type {
  text-transform: uppercase;
}
.file__size {
  text-transform: lowercase;
}

.file-upload {
  cursor: pointer;
  display: block;
  transition: opacity 0.25s;
}
.file-upload:hover {
  opacity: 0.5;
}
.file-upload__zone {
  gap: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.file-upload__zone::after {
  content: "";
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNOSAxdjE2TTEgOWgxNiIvPjwvc3ZnPg==");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNOSAxdjE2TTEgOWgxNiIvPjwvc3ZnPg==");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.file-upload__file {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
.file-upload__file-info {
  gap: 0.2rem;
  display: grid;
}
.file-upload__file-name {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.file-upload__file-size {
  opacity: 0.75;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.file-upload__file-remove {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNMTYgMiAyIDE2bTE0IDBMMiAyIi8+PC9zdmc+");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBkPSJNMTYgMiAyIDE2bTE0IDBMMiAyIi8+PC9zdmc+");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.file-upload__input {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

@media (max-width: 1023px) {
  .file-upload:hover {
    opacity: initial;
  }
  .file-upload__file-name {
    line-height: 2.8rem;
  }
}
.vacancy-toggle {
  text-decoration: none;
  display: block;
  position: relative;
}
.vacancy-toggle__trigger {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  gap: 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: baseline;
}
.vacancy-toggle__trigger-title {
  grid-column: 1/9;
}
.vacancy-toggle__trigger-place {
  grid-column: 9/-2;
}
.vacancy-toggle__trigger-icon {
  position: absolute;
  top: 4rem;
  right: 0;
  display: block;
  width: 4rem;
  height: 4rem;
  transition: opacity 0.25s;
}
.vacancy-toggle__content {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.vacancy-toggle__content-text {
  max-width: 85rem;
  padding-bottom: 8rem;
}

.vacancy-toggle:hover .vacancy-toggle__trigger-icon {
  opacity: 0.5;
}

@media (max-width: 1023px) {
  .vacancy-toggle {
    padding: 1rem 0rem;
  }
  .vacancy-toggle__trigger {
    padding: 2rem 3.8rem 2rem 0rem;
    grid-template-columns: 1fr;
  }
  .vacancy-toggle__trigger-title {
    grid-column: auto;
  }
  .vacancy-toggle__trigger-place {
    grid-column: auto;
  }
  .vacancy-toggle__trigger-icon {
    top: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .vacancy-toggle__content {
    height: auto;
    opacity: initial;
  }
  .vacancy-toggle__content-text {
    max-width: 100%;
    padding-bottom: 2rem;
  }
  .vacancy-toggle:hover .vacancy-toggle__trigger-icon {
    opacity: 1;
  }
}
.gallery {
  height: 148.3rem;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-template-areas: "a b b" "a b b" "c b b" "c d f" "e d f" "e d f";
}
.gallery__item {
  position: relative;
}
.gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.gallery__item:nth-child(6n+1) {
  grid-area: a;
}

.gallery__item:nth-child(6n+2) {
  grid-area: b;
}

.gallery__item:nth-child(6n+3) {
  grid-area: c;
}

.gallery__item:nth-child(6n+4) {
  grid-area: d;
}

.gallery__item:nth-child(6n+5) {
  grid-area: e;
}

.gallery__item:nth-child(6n+6) {
  grid-area: f;
}

.gallery__item:nth-child(n+7) {
  display: none;
}

@media (max-width: 1023px) {
  .gallery {
    height: 80rem;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr 3fr 2fr 3fr;
    grid-template-areas: "a a" "b c" "d e" "f f";
  }
}
.rings {
  --offset: 3.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: var(--offset);
}
.rings__item {
  position: relative;
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  aspect-ratio: 1/1;
}
.rings__item::before {
  content: "";
  position: absolute;
  top: calc(var(--offset) * -1);
  left: calc(var(--offset) * -1);
  right: calc(var(--offset) * -1);
  bottom: calc(var(--offset) * -1);
  border: 0.15rem solid currentColor;
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .rings {
    --offset: 2rem;
  }
  .rings__item {
    width: 100%;
  }
}
.route-group__head {
  margin-bottom: 4rem;
}

@media (max-width: 1023px) {
  .route-group__head {
    margin-bottom: 1rem;
  }
}
.accordion__trigger {
  text-align: left;
  gap: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 4rem 0rem;
  transition: opacity 0.25s;
}
.accordion__trigger:hover {
  opacity: 0.5;
}
.accordion__trigger-icon {
  width: 4rem;
  height: 4rem;
}
.accordion__content {
  display: none;
  padding-bottom: 8rem;
  animation: tc-fade 0.5s;
}
.accordion__content-text {
  max-width: 85%;
}

.accordion.is-open .accordion__content {
  display: block;
}

@media (max-width: 1023px) {
  .accordion__trigger {
    padding: 3rem 0rem;
  }
  .accordion__trigger:hover {
    opacity: initial;
  }
  .accordion__trigger-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
  .accordion__content {
    padding-bottom: 4rem;
  }
  .accordion__content-text {
    max-width: 100%;
  }
}
.pagination {
  gap: 2rem 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
}
.pagination__loadmore {
  font: inherit;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity 0.25s;
}
.pagination__loadmore:hover {
  opacity: 0.5;
}
.pagination__loadmore.loading span {
  color: transparent;
}
.pagination__loadmore.loading::after {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: transparent transparent currentColor currentColor;
  animation: tc-spinner 600ms linear infinite;
}
.pagination__pages ul {
  list-style: none;
  gap: 0.2rem;
  display: flex;
  flex-wrap: wrap;
}
.pagination__pages a:not(.prev):not(.next), .pagination__pages .dots, .pagination__pages .current {
  display: block;
}
.pagination__pages a:not(.prev):not(.next), .pagination__pages .current {
  text-decoration: none;
  padding: 0rem 1rem;
  min-width: 3.2rem;
  transition: background-color 0.25s, color 0.25s;
}
.pagination__pages a:not(.prev):not(.next):hover, .pagination__pages .current {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}
.pagination__pages .prev, .pagination__pages .next {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color: currentColor;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0.25;
  transition: opacity 0.25s;
}
.pagination__pages .prev {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yNiAxNkg2bTktOS05IDkgOSA5Ii8+PC9zdmc+");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yNiAxNkg2bTktOS05IDkgOSA5Ii8+PC9zdmc+");
}
.pagination__pages .next {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik02IDE2aDIwbS05IDkgOS05LTktOSIvPjwvc3ZnPg==");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik02IDE2aDIwbS05IDkgOS05LTktOSIvPjwvc3ZnPg==");
}
.pagination__pages .prev:hover, .pagination__pages .next:hover {
  opacity: 1;
}

@media (max-width: 1023px) {
  .pagination {
    flex-direction: column-reverse;
  }
  .pagination__loadmore:hover {
    opacity: initial;
  }
  .pagination__pages .prev, .pagination__pages .next {
    opacity: initial;
  }
}
.checkbox {
  cursor: pointer;
  position: relative;
  gap: 2rem;
  display: flex;
  align-items: center;
  transition: opacity 250ms;
}
.checkbox:hover {
  opacity: 0.5;
}
.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.checkbox__alias {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  flex-shrink: 0;
  border: 0.1rem solid var(--tc-color-black);
}
.checkbox__alias::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTQuNSAxMiA1IDUgMTAtMTAiLz48L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTQuNSAxMiA1IDUgMTAtMTAiLz48L3N2Zz4=");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 2.4rem 2.4rem;
          mask-size: 2.4rem 2.4rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: currentColor;
  opacity: 0;
}
.checkbox__title {
  font-size: 2rem;
  line-height: 2.8rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.checkbox__input:checked + .checkbox__alias::after {
  opacity: 1;
}

@media (max-width: 1023px) {
  .checkbox {
    gap: 1.6rem;
  }
  .checkbox:hover {
    opacity: initial;
  }
  .checkbox__alias {
    width: 2.4rem;
    height: 2.4rem;
  }
  .checkbox__title {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.filters {
  height: 100%;
  padding-right: 2rem;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
}
.filters__head {
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}
.filters__head-label {
  font-size: 2rem;
  line-height: 2.8rem;
}
.filters__head-reset {
  color: var(--tc-color-grey);
  font-size: 2rem;
  line-height: 2.8rem;
  border: 0;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  transition: opacity 250ms;
}
.filters__head-reset:hover {
  opacity: 0.5;
}
.filters__btns {
  display: none;
}

@media (max-width: 1023px) {
  .filters {
    padding-left: var(--tc-offset);
    padding-right: var(--tc-offset);
  }
  .filters__head {
    padding-top: 8rem;
  }
  .filters__head-label {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
  .filters__head-reset {
    display: none;
  }
  .filters__btns {
    padding-top: 6rem;
    padding-bottom: 6rem;
    gap: 3rem;
    display: grid;
  }
}
.filter {
  display: grid;
}
.filter__head {
  color: inherit;
  text-align: left;
  font-size: 3rem;
  line-height: 4rem;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-width: 0 0 0.1rem;
  border-style: solid;
  border-color: var(--tc-color-grey);
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  transition: opacity 250ms;
}
.filter__head:hover {
  opacity: 0.5;
}
.filter__head::after {
  content: "";
  width: 3.2rem;
  height: 4rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOC41IDkuNzUgMTYgMjIuMjUgMy41IDkuNzUiLz48L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOC41IDkuNzUgMTYgMjIuMjUgMy41IDkuNzUiLz48L3N2Zz4=");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  transition: transform 250ms;
}
.filter__head.is-open::after {
  transform: scale(-1);
}
.filter__body {
  display: none;
  list-style: none;
  animation: tc-fade-in 750ms;
}
.filter__item {
  display: grid;
}
.filter__elem {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid var(--tc-color-grey);
}
.filter__sub-head {
  color: inherit;
  text-align: left;
  font-size: 2rem;
  line-height: 2.8rem;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-width: 0 0 0.1rem;
  border-style: solid;
  border-color: var(--tc-color-grey);
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  transition: opacity 250ms;
}
.filter__sub-head:hover {
  opacity: 0.5;
}
.filter__sub-head::after {
  content: "";
  width: 3.2rem;
  height: 4rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOC41IDkuNzUgMTYgMjIuMjUgMy41IDkuNzUiLz48L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOC41IDkuNzUgMTYgMjIuMjUgMy41IDkuNzUiLz48L3N2Zz4=");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  transition: transform 250ms;
}
.filter__sub-head.is-open::after {
  transform: scale(-1);
}
.filter__sub-body {
  display: none;
  list-style: none;
  padding-left: 4rem;
  animation: tc-fade-in 750ms;
}
.filter__sub-elem {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid var(--tc-color-grey);
}

.filter__head.is-open + .filter__body,
.filter__sub-head.is-open + .filter__sub-body {
  display: block;
}

@media (max-width: 1023px) {
  .filter__head {
    font-size: 2rem;
    line-height: 2.6rem;
    gap: 1.6rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .filter__head:hover {
    opacity: initial;
  }
  .filter__head::after {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
  }
  .filter__elem {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .filter__sub-head {
    font-size: 1.6rem;
    line-height: 2rem;
    gap: 1.6rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .filter__sub-head:hover {
    opacity: initial;
  }
  .filter__sub-head::after {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
  }
  .filter__sub-body {
    padding-left: 1.6rem;
  }
  .filter__sub-elem {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.certs-card {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  transition: opacity 0.25s;
}
.certs-card:hover {
  opacity: 0.5;
}
.certs-card__media {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 210/297;
}
.certs-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1023px) {
  .certs-card {
    gap: 1rem;
  }
  .certs-card:hover {
    opacity: initial;
  }
}
.project-card {
  position: relative;
  transition: opacity 0.6s;
  text-decoration: none;
  animation: tc-fade-in-up 0.6s;
}
.project-card__media {
  overflow: hidden;
  position: relative;
  aspect-ratio: 8/5;
}
.project-card__media-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}
.project-card__media-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.project-card__media-cover {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.project-card__media-cover span {
  flex: 1 1 auto;
}
.project-card__footer {
  margin-top: 2rem;
}
.project-card__footer-title {
  transition: opacity 0.25s;
}

.project-card.hidden {
  opacity: 0;
}

.project-card.active .project-card__footer-title {
  opacity: 0;
}

.project-card.active .project-card__media-inner {
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .project-card__title {
    margin-top: 1rem;
  }
}
.benefit-card {
  width: 33.3333333333%;
  display: flex;
  flex-shrink: 0;
  padding-left: var(--tc-offset);
}
.benefit-card__inner {
  padding-left: 3rem;
  padding-right: 11rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  border-left: 0.1rem solid var(--tc-color-black);
}
.benefit-card__head {
  min-height: 46rem;
}
.benefit-card__title {
  margin-top: 2rem;
}
.benefit-card__body {
  flex-grow: 1;
}

@media (max-width: 1023px) {
  .benefit-card {
    width: calc(100% - 3 * var(--tc-offset));
  }
  .benefit-card__inner {
    padding-left: 1.6rem;
    padding-right: 2.4rem;
  }
  .benefit-card__head {
    min-height: 20rem;
  }
}
/* .archive-research__list {
  transition: opacity .25s;
} */
.research-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: opacity 0.25s;
  text-decoration: none;
  animation: tc-fade-in 0.25s;
}
.research-card:hover {
  opacity: 0.75;
}
.research-card__head {
  position: relative;
  aspect-ratio: 16/10;
}
.research-card__head img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.research-card__body {
  display: grid;
  grid-template-rows: 1fr;
  padding: 4rem;
  border: 0.1rem solid var(--tc-color-grey);
}
.research-card__info {
  max-width: 96rem;
  padding-bottom: 8rem;
}
.research-card__time {
  color: var(--tc-color-dark);
  display: block;
}
.research-card__title {
  margin-top: 2rem;
}
.research-card__text {
  color: var(--tc-color-dark);
  margin-top: 2rem;
}
.research-card__under {
  gap: 2rem;
  display: flex;
  align-items: center;
  border-top: 0.1rem solid var(--tc-color-grey);
  padding-top: 4rem;
}
.research-card__arrow {
  width: 4rem;
  height: 6rem;
  margin-left: auto;
}

@media (max-width: 1023px) {
  .research-card:hover {
    opacity: initial;
  }
  .research-card__body {
    padding: 2rem 1rem;
  }
  .research-card__info {
    padding-bottom: 2rem;
  }
  .research-card__title {
    margin-top: 1.2rem;
  }
  .research-card__text {
    margin-top: 1.2rem;
  }
  .research-card__under {
    padding-top: 2rem;
  }
  .research-card__arrow {
    display: none;
  }
}
.project-spacer {
  transition: opacity 0.6s;
  animation: tc-fade-in-up 0.6s;
}
.project-spacer.hidden {
  opacity: 0;
}

.accent-card {
  text-decoration: none;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
  transition: opacity 0.25s;
}
.accent-card:hover {
  opacity: 0.75;
}
.accent-card__head {
  min-height: 48rem;
  position: relative;
  margin-right: -2rem;
}
.accent-card__head img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accent-card__body {
  grid-column: span 2;
  display: grid;
  grid-template-rows: 1fr;
  padding: 4rem;
}
.accent-card__info {
  max-width: 96rem;
  padding-bottom: 8rem;
}
.accent-card__time {
  color: var(--tc-color-dark);
}
.accent-card__title {
  margin-top: 2rem;
}
.accent-card__text {
  color: var(--tc-color-dark);
  margin-top: 2rem;
}
.accent-card__under {
  gap: 2rem;
  display: flex;
  align-items: center;
  border-top: 0.1rem solid var(--tc-color-dark);
  padding-top: 4rem;
}
.accent-card__arrow {
  width: 4rem;
  height: 6rem;
  margin-left: auto;
}

@media (max-width: 1023px) {
  .accent-card {
    grid-template-columns: 1fr;
  }
  .accent-card:hover {
    opacity: initial;
  }
  .accent-card__head {
    min-height: auto;
    aspect-ratio: 16/10;
    margin-right: initial;
  }
  .accent-card__body {
    grid-column: auto;
    padding: 2rem 1rem;
  }
  .accent-card__info {
    padding-bottom: 2rem;
  }
  .accent-card__title {
    margin-top: 1.2rem;
  }
  .accent-card__text {
    margin-top: 1.2rem;
  }
  .accent-card__under {
    padding-top: 2rem;
  }
  .accent-card__arrow {
    display: none;
  }
}
/* .project-overlay {
  z-index: 99;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: $cl_white;
  mix-blend-mode: difference;
  perspective: 200rem;
  perspective-origin: 50% 50%;
  transform: perspective(200rem);

  &__title {
    font-size: 12rem;
    line-height: 1;
    letter-spacing: -.04em;
    opacity: 0;
    transform: translate(0, 12rem) rotateX(-45deg);
    transition: transform .6s, opacity .6s;
  }
} */
.project-overlay {
  z-index: 99;
  position: fixed;
  inset: 0;
  color: #ffffff;
  mix-blend-mode: difference;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.project-overlay__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8rem;
  perspective: 200rem;
  perspective-origin: 50% 50%;
  transform: perspective(200rem);
}
.project-overlay__title {
  font-size: 12rem;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translate(0, 12rem) rotateX(-45deg);
  transition: transform 0.6s, opacity 0.6s;
}

.project-overlay__item.active div {
  opacity: 1;
  transform: translate(0, 0) rotateX(0);
}

.animate-underline {
  --scaleX: 0;
  --opacity: 0;
  position: relative;
}
.animate-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  opacity: var(--opacity);
  background-color: currentColor;
  transform: scale(var(--scaleX), 1);
  transform-origin: left top;
}

::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

::placeholder {
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.25s;
}

:focus::-moz-placeholder {
  opacity: 0.25;
}

:focus::placeholder {
  opacity: 0.25;
}

.wpcf7-response-output,
.wpcf7 .screen-reader-response {
  display: none;
  overflow: hidden;
  visibility: hidden;
}

.wpcf7-custom-group {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
}

.wpcf7-custom-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8rem;
  text-transform: uppercase;
}

.wpcf7-form-control-wrap {
  display: flex;
}

.wpcf7-text,
.wpcf7-tel,
.wpcf7-email,
.wpcf7-textarea {
  font: inherit;
  color: inherit;
  width: 100%;
  display: block;
  resize: none;
  padding: 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  box-shadow: inset 0 -0.1rem 0 var(--tc-color-grey);
  background-color: transparent;
}
.wpcf7-text:focus,
.wpcf7-tel:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus {
  box-shadow: inset 0 -0.2rem 0 currentColor;
}

.wpcf7-not-valid-tip {
  color: red;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  display: block;
  width: 100%;
  padding-top: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* spinner */
.wpcf7-spinner {
  color: inherit;
  top: calc(50% - 1.2rem);
  left: calc(50% - 1.2rem);
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  border-radius: 50%;
  visibility: hidden;
  border-width: 0.2rem;
  border-style: solid;
  border-color: transparent transparent currentColor currentColor;
  animation: tc-spinner 1000ms linear infinite;
}

.wpcf7 form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 form.submitting {
  pointer-events: none;
}

.wpcf7 form.sent .wpcf7-submit,
.wpcf7 form.submitting .wpcf7-submit {
  opacity: 0;
  pointer-events: none;
}

/* success */
.wpcf7-custom-success {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  pointer-events: none;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
}

/* acceptance */
.wpcf7-acceptance input {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-top: 0.5rem;
  padding-left: 2.8rem;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
  border: 0.1rem solid currentColor;
}

.wpcf7-acceptance .wpcf7-list-item-label::after {
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTQuNSAxMiA1IDUgMTAtMTAiLz48L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTQuNSAxMiA1IDUgMTAtMTAiLz48L3N2Zz4=");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 1.8rem 1.8rem;
          mask-size: 1.8rem 1.8rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: none;
  background: currentColor;
}

.wpcf7-acceptance input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
  will-change: backdrop-filter;
}
.fancybox__caption {
  text-align: center;
}

div.juxtapose {
  width: 100% !important;
  max-width: 100%;
}

div.jx-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: var(--tc-color-white);
}

div.jx-handle {
  position: absolute;
  height: 100%;
  width: 40px;
  cursor: col-resize;
  z-index: 15;
  margin-left: -20px;
}

.vertical div.jx-handle {
  height: 40px;
  width: 100%;
  cursor: row-resize;
  margin-top: -20px;
  margin-left: 0;
}

div.jx-control {
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  width: 1rem;
  background-color: currentColor;
}

.vertical div.jx-control {
  height: 1rem;
  width: 100%;
  background-color: currentColor;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

div.jx-controller {
  position: absolute;
  margin: auto;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 16rem;
  height: 16rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--tc-color-black);
}

div.jx-controller::after,
div.jx-controller::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: left 0.25s, right 0.25s;
}

div.jx-controller::after {
  left: 3.2rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOCAxNkg0TTE2IDQgNCAxNmwxMiAxMiIvPjwvc3ZnPg==");
}

div.jx-controller:active::after {
  left: 4rem;
}

div.jx-controller::before {
  right: 3.2rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik00IDE2aDI0TTE2IDI4bDEyLTEyTDE2IDQiLz48L3N2Zz4=");
}

div.jx-controller:active::before {
  right: 4rem;
}

.vertical div.jx-controller {
  width: 16rem;
  height: 16rem;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
  position: relative;
}

div.jx-image {
  position: absolute;
  height: 100%;
  display: inline-block;
  top: 0;
  overflow: hidden;
}

.vertical div.jx-image {
  width: 100%;
  left: 0;
  top: auto;
}

div.jx-image img {
  height: 100%;
  width: auto;
  z-index: 5;
  position: absolute;
  margin-bottom: 0;
  max-height: none;
  max-width: none;
  max-height: initial;
  max-width: initial;
}

.vertical div.jx-image img {
  height: auto;
  width: 100%;
}

div.jx-image.jx-left {
  left: 0;
  background-position: left;
}

div.jx-image.jx-left img {
  left: 0;
}

div.jx-image.jx-right {
  right: 0;
  background-position: right;
}

div.jx-image.jx-right img {
  right: 0;
  bottom: 0;
}

.veritcal div.jx-image.jx-left {
  top: 0;
  background-position: top;
}

.veritcal div.jx-image.jx-left img {
  top: 0;
}

.vertical div.jx-image.jx-right {
  bottom: 0;
  background-position: bottom;
}

.veritcal div.jx-image.jx-right img {
  bottom: 0;
}

div.jx-image div.jx-label {
  font-size: 1.4rem;
  padding: 0 4rem;
  position: absolute;
  display: inline-block;
  bottom: 2.4rem;
  background-color: var(--tc-color-black);
  color: var(--tc-color-white);
  z-index: 10;
  white-space: nowrap;
  line-height: 6rem;
}

div.jx-image.jx-left div.jx-label {
  left: 2.4rem;
}

div.jx-image.jx-right div.jx-label {
  right: 2.4rem;
}

.vertical div.jx-image div.jx-label {
  display: table;
  position: absolute;
}

.vertical div.jx-image.jx-right div.jx-label {
  left: 0;
  bottom: 0;
  top: auto;
}

div.jx-credit {
  line-height: 1.1;
  font-size: 0.75em;
}

div.jx-credit em {
  font-weight: bold;
  font-style: normal;
}

/* Animation */
div.jx-image.transition {
  transition: width 0.5s ease;
}

div.jx-handle.transition {
  transition: left 0.5s ease;
}

.vertical div.jx-image.transition {
  transition: height 0.5s ease;
}

.vertical div.jx-handle.transition {
  transition: top 0.5s ease;
}

/* keyboard accessibility */
div.jx-controller:focus,
div.jx-image.jx-left div.jx-label:focus,
div.jx-image.jx-right div.jx-label:focus {
  opacity: 0.75;
}

@media (max-width: 1023px) {
  div.jx-controller {
    width: 8rem;
    height: 8rem;
  }
  div.jx-image div.jx-label {
    padding: 0 2rem;
    bottom: 0.8rem;
    line-height: 4rem;
  }
  div.jx-image.jx-left div.jx-label {
    left: 0.8rem;
  }
  div.jx-image.jx-right div.jx-label {
    right: 0.8rem;
  }
  div.jx-controller::after,
  div.jx-controller::before {
    width: 1.6rem;
    height: 1.6rem;
  }
  div.jx-controller::after {
    left: 1.6rem;
  }
  div.jx-controller:active::after {
    left: 1.6rem;
  }
  div.jx-controller::before {
    right: 1.6rem;
  }
  div.jx-controller:active::before {
    right: 1.6rem;
  }
}
.modal {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: auto;
  padding: 4rem 1.6rem;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
  display: none;
}
.modal.is_open {
  display: flex;
}
.modal__close {
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 6.4rem;
  height: 6.4rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im04LjY5IDguNjkgMjIuNjIgMjIuNjJtMC0yMi42M0w4LjY5IDMxLjMxIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4rem 4rem;
  background-color: var(--tc-color-white);
}
.modal__popup {
  cursor: auto;
  position: relative;
  top: 0;
  width: 100%;
  margin: auto;
  flex-shrink: 0;
  color: var(--tc-color-white);
  background: var(--tc-color-black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 4.8rem 100%, 0% calc(100% - 3.2rem));
}
.modal__head {
  margin-bottom: 6.4rem;
}
.modal__title {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 3.6rem;
}

.modal-default__popup {
  max-width: 76rem;
}
.modal-default__wrapper {
  padding: 7.2rem 1.6rem;
}

.modal-form {
  gap: 2rem 1.6rem;
  display: grid;
}
.modal-form__fields, .modal-form__footer {
  gap: inherit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.modal-form__footer {
  margin-top: 0.5rem;
}
.modal-form__name {
  grid-column: 1/2;
}
.modal-form__message {
  grid-row: 1/5;
  grid-column: 2/-1;
}
.modal-form__email {
  grid-column: 1/2;
}
.modal-form__phone {
  grid-column: 1/2;
}
.modal-form__business {
  grid-column: 1/2;
}
.modal-form__action {
  position: relative;
  grid-column: 2/-1;
  margin-top: 1rem;
}
.modal-form__submit {
  width: 100%;
}
.modal-form__response {
  display: none;
}

@media (max-width: 1023px) {
  .modal-form__fields, .modal-form__footer {
    grid-template-columns: 1fr;
  }
  .modal-form__name, .modal-form__email, .modal-form__message, .modal-form__phone, .modal-form__business {
    grid-column: auto;
  }
  .modal-form__message {
    grid-row: auto;
  }
  .modal-form__action {
    grid-column: auto;
    margin-top: 1.5rem;
  }
}
.cookie-notice {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
}
.cookie-notice__body {
  position: relative;
  gap: 0.8rem;
  display: grid;
  width: 100%;
  max-width: 68rem;
  padding: 2.4rem 9.6rem 4.8rem 4.8rem;
  color: var(--tc-color-white);
  background: var(--tc-color-black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 4.8rem 100%, 0% calc(100% - 3.2rem));
}
.cookie-notice__close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  padding: 1.6rem;
  color: var(--tc-color-black);
  background: var(--tc-color-white);
  transition: opacity 0.25s;
}
.cookie-notice__close:hover {
  opacity: 0.5;
}

@media (max-width: 1023px) {
  .cookie-notice {
    left: 1.6rem;
    right: 1.6rem;
    bottom: 4rem;
  }
  .cookie-notice__body {
    max-width: initial;
    padding: 7.2rem 1.6rem 4.8rem 1.6rem;
  }
  .cookie-notice__close:hover {
    opacity: initial;
  }
}
.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.8rem var(--tc-offset);
  background-color: var(--tc-color-white);
  transition: transform 0.25s;
}
.header--hide {
  transform: translateY(-100%);
}
.header__logo {
  height: 2.8rem;
}
.header__btn-menu {
  display: block;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.header__btn-back {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1023px) {
  .header {
    display: flex;
  }
}
.footer {
  height: 100dvh;
  min-height: 64rem;
  display: grid;
  grid-template-rows: 1fr;
  padding: 7rem 0 2rem;
  background-color: #ffffff;
}
.footer__slider {
  display: flex;
  overflow: hidden;
}
.footer__slider-before {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  padding: 0 var(--tc-offset);
}
.footer__before-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.footer__slider-after {
  width: 100%;
  gap: 16rem;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-left: var(--tc-offset);
  overflow: hidden;
}
.footer__after-inner {
  gap: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.footer__after-email, .footer__after-phone {
  font-size: 12rem;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  white-space: nowrap;
  text-decoration: none;
}
.footer__after-phone {
  word-spacing: 0.15em;
}
.footer__after-logo {
  width: 26rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.footer__row-about, .footer__row-under {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 var(--tc-offset);
}
.footer__row-menu {
  padding: 0 var(--tc-offset);
  margin-bottom: 2rem;
}
.footer__row-about {
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__menu-item {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.footer__menu-link {
  text-decoration: none;
}
.footer__contact-list {
  list-style: none;
  gap: 1.5rem 4rem;
  display: flex;
  flex-wrap: wrap;
}
.footer__contact-item {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.footer__contact-phone {
  text-decoration: none;
}
.footer__contact-btn {
  gap: 1.2rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.footer__contact-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.footer__social-list {
  list-style: none;
  gap: 1.5rem 4rem;
  display: flex;
  flex-wrap: wrap;
}
.footer__social-item {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.footer__social-link {
  text-decoration: none;
}
.footer__info {
  font-size: 1.6rem;
  line-height: 2rem;
}
.footer__info a {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .footer {
    height: auto;
    min-height: auto;
    padding: 0 0 2rem;
  }
  .footer__slider {
    height: 25rem;
  }
  .footer__slider-after {
    gap: 2.5rem;
  }
  .footer__after-inner {
    gap: 1.5rem;
  }
  .footer__after-email, .footer__after-phone {
    font-size: 2.5rem;
  }
  .footer__after-logo {
    width: 8rem;
  }
  .footer__row-menu {
    display: none;
  }
  .footer__row-under {
    gap: 1.5rem;
    flex-direction: column;
  }
  .footer__row-about {
    flex-direction: column;
  }
  .footer__contact-list {
    flex-direction: column;
  }
  .footer__contact-item {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .footer__contact-btn {
    gap: 1rem;
  }
  .footer__contact-btn svg {
    width: 2rem;
    height: 2rem;
  }
  .footer__social-list {
    gap: 1.5rem 2.4rem;
  }
  .footer__social-item {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .footer__info {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.navbar {
  counter-reset: navbar 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  transition: transform 0.25s;
}
.navbar--inner {
  z-index: 99;
}
.navbar--sticky {
  top: 0;
  position: sticky;
  animation: tc-hide 0.25s;
}
.navbar--hide {
  transform: translate(0, -100%);
}
.navbar__inner {
  padding: 1.6rem var(--tc-offset);
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
}
.navbar__logo {
  display: block;
  width: 19rem;
  height: 4rem;
  grid-column: span 3;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navbar__body {
  grid-column: span 6;
  gap: 2rem;
  display: flex;
}
.navbar__menu a {
  text-decoration: none;
}
.navbar__item {
  text-decoration: none;
  counter-increment: navbar 1;
  position: relative;
  display: block;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.navbar__item::before {
  content: counter(navbar, decimal-leading-zero);
  position: absolute;
  top: -3rem;
  left: 0rem;
  color: #BFBFBF;
  font-size: 1.4rem;
  line-height: 2rem;
}
.navbar__actions {
  margin-left: auto;
  gap: 10rem;
  display: flex;
  align-items: center;
}

.navbar--sticky .navbar__item::before {
  display: none;
}

.navbar--fixed {
  z-index: 99;
  position: fixed;
  transform: translate(0, -100%);
}

.navbar--fixed.navbar--fixed-hide {
  display: none;
}

.navbar--fixed.navbar--fixed-show {
  display: block;
  transform: translate(0, 0);
}

.navbar--fixed .navbar__item::before {
  display: none;
}

.navbar-menu a {
  text-decoration: none;
}
.navbar-menu__link {
  position: relative;
}
.navbar .menu {
  list-style: none;
  gap: 10rem;
  display: flex;
  flex-wrap: wrap;
  /* > li > a {
    font-size: 2.4rem;
    line-height: 4rem;
    letter-spacing: -.02em;
    text-transform: uppercase;
    display: block;
  } */
}
.navbar .menu .menu__link {
  display: block;
}
.navbar .menu .menu-item {
  position: relative;
}
.navbar .menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.8rem);
  right: -2rem;
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTggMTAgNCA2aDhsLTQgNHoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  opacity: 0.25;
}
.navbar .menu .sub-menu {
  display: none;
}
.navbar .menu .dropdown {
  z-index: 1;
  position: absolute;
  top: calc(100% + 2.1rem);
  left: -4rem;
  display: block;
  width: 64rem;
  padding: 2rem 4rem 4rem;
  background: #ffffff;
  overflow: auto;
  max-height: 50dvh;
  scrollbar-width: none;
}
.navbar .menu .dropdown::-webkit-scrollbar {
  display: none;
}
.navbar .menu .dropdown > .sub-menu {
  list-style: none;
  gap: 1rem;
  display: grid;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.navbar .menu .menu-back {
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  margin-bottom: 2rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTIgMTJoMjBNMTAuNSAzLjUgMiAxMmw4LjUgOC41Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1023px) {
  .navbar {
    display: none !important;
  }
}
.upper__inner {
  padding: 2rem var(--tc-offset) 10rem;
  display: flex;
  flex-wrap: wrap;
}
.upper__title {
  width: 80rem;
}
.upper__text {
  color: var(--tc-color-dark);
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
  margin-left: auto;
}

@media (max-width: 1023px) {
  .upper__inner {
    padding: 2.4rem var(--tc-offset) 1.2rem;
  }
  .upper__title {
    display: none;
  }
  .upper__text {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.page-head {
  position: relative;
  padding-top: 2rem;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
  padding-bottom: 5rem;
}
.page-head__title {
  max-width: 80%;
}
.page-head__crumbs {
  margin-top: 1rem;
}
.page-head__btn-back {
  position: absolute;
  top: 0;
  right: var(--tc-offset);
}

@media (max-width: 1023px) {
  .page-head {
    padding-top: 0.8rem;
    padding-bottom: 4rem;
  }
  .page-head__title {
    max-width: 100%;
  }
  .page-head__btn-back {
    display: none;
  }
}
.block-clients {
  overflow: hidden;
}
.block-clients__inner {
  position: relative;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-clients__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
}
.block-clients__body {
  display: flex;
  flex-wrap: wrap;
}
.block-clients__item {
  gap: 4rem;
  display: flex;
}
.block-clients__item:nth-of-type(1) {
  margin-left: 63rem;
}
.block-clients__item:nth-of-type(2) {
  margin-left: 77.5rem;
}
.block-clients__item:nth-of-type(3) {
  margin-left: 21rem;
}
.block-clients__item:nth-of-type(5) {
  margin-left: 22rem;
}
.block-clients__item:nth-of-type(7) {
  margin-left: 21rem;
}
.block-clients__item:nth-of-type(8) {
  margin-left: -9rem;
}
.block-clients__item:nth-of-type(9) {
  margin-left: 54rem;
}
.block-clients__name {
  font-size: 12rem;
  line-height: 12rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.block-clients__image {
  flex-shrink: 0;
  width: 24rem;
  height: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1023px) {
  .block-clients__label {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
  }
  .block-clients__item {
    gap: 1rem;
  }
  .block-clients__item:nth-of-type(1) {
    margin-left: auto;
  }
  .block-clients__item:nth-of-type(2) {
    margin-left: 12rem;
  }
  .block-clients__item:nth-of-type(3) {
    margin-left: 0rem;
    white-space: nowrap;
  }
  .block-clients__item:nth-of-type(5) {
    margin-left: auto;
  }
  .block-clients__item:nth-of-type(6) {
    max-width: 28.5rem;
  }
  .block-clients__item:nth-of-type(7) {
    margin-left: -6rem;
  }
  .block-clients__item:nth-of-type(8) {
    margin-left: -3.6rem;
  }
  .block-clients__item:nth-of-type(9) {
    margin-left: -2rem;
  }
  .block-clients__name {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.02em;
  }
  .block-clients__image {
    width: 9rem;
    height: 3.6rem;
  }
}
.block-metrics {
  overflow: hidden;
}
.block-metrics__head {
  margin-bottom: 4rem;
}
.block-metrics__body {
  display: grid;
}
.block-metrics__row {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding: 2rem var(--tc-offset) 4rem;
  border-bottom: 0.1rem solid var(--tc-color-grey);
}
.block-metrics__col {
  gap: 6rem;
  display: flex;
  flex-wrap: wrap;
}
.block-metrics__col--size {
  grid-column: 1/-1;
}
.block-metrics__col--use {
  grid-column: 2/6;
}
.block-metrics__col--year {
  grid-column: 6/10;
}
.block-metrics__col--case {
  grid-column: 4/10;
}
.block-metrics__count {
  color: var(--tc-color-yellow);
  font-size: 26rem;
  line-height: 1;
  letter-spacing: -0.08em;
}
.block-metrics__count--size {
  width: 100rem;
}
.block-metrics__count--use {
  width: 38.5rem;
}
.block-metrics__count--year {
  width: 14rem;
}
.block-metrics__count--case {
  width: 55rem;
}
.block-metrics__text {
  padding: 3.2rem 0;
  max-width: 35rem;
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: -0.02em;
}

@media (max-width: 1023px) {
  .block-metrics__head {
    margin-bottom: 2rem;
  }
  .block-metrics__row {
    gap: 0rem;
    grid-template-columns: 1fr;
    padding: 0rem;
    border-bottom: initial;
  }
  .block-metrics__row:nth-of-type(2) {
    order: 1;
  }
  .block-metrics__col {
    gap: 1rem;
    flex-direction: column;
    padding: 2rem var(--tc-offset) 4rem;
    border-bottom: 0.1rem solid #BFBFBF;
  }
  .block-metrics__col--size, .block-metrics__col--use, .block-metrics__col--year, .block-metrics__col--case {
    grid-column: auto;
  }
  .block-metrics__count {
    font-size: 8rem;
  }
  .block-metrics__count--size, .block-metrics__count--use, .block-metrics__count--year, .block-metrics__count--case {
    width: auto;
  }
  .block-metrics__text {
    padding: 0rem;
    max-width: initial;
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
.block-industry__head {
  margin-bottom: 12rem;
}
.block-industry__body {
  display: grid;
}
.block-industry__item {
  cursor: pointer;
  text-decoration: none;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding: 2rem var(--tc-offset);
  transition: background-color 0.1s;
}
.block-industry__item-aside {
  grid-column: 1/4;
}
.block-industry__item-main {
  grid-column: 4/-1;
  gap: 0.5rem;
  display: flex;
}
.block-industry__item-count {
  opacity: 0;
  transition: opacity 0.1s;
}
.block-industry__item-title {
  opacity: 0.25;
  flex-grow: 1;
  transition: opacity 0.1s;
}
.block-industry__item-icon {
  display: none;
  margin-top: 0.3rem;
}

.block-industry__item:hover {
  background-color: var(--tc-color-yellow);
}

.block-industry__item:hover .title {
  opacity: 1;
}

@media (max-width: 1023px) {
  .block-industry__head {
    margin-bottom: 4rem;
  }
  .block-industry__body {
    gap: 2rem;
  }
  .block-industry__item {
    grid-template-columns: 1fr;
    padding: 0rem var(--tc-offset);
  }
  .block-industry__item:hover {
    background-color: initial;
  }
  .block-industry__item-aside, .block-industry__item-main {
    grid-column: auto;
  }
  .block-industry__item-aside {
    display: none;
  }
  .block-industry__item-title {
    opacity: 1;
  }
  .block-industry__item-icon {
    display: block;
  }
}
.block-points__body {
  height: 100dvh;
  position: relative;
  filter: invert(1);
}

@media (max-width: 1023px) {
  .block-points {
    display: none;
  }
}
.block-benefit {
  overflow: hidden;
}
.block-benefit__title {
  display: grid;
}
.block-benefit__title-line {
  display: flex;
  flex-wrap: wrap;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-benefit__title-line:nth-of-type(1) span {
  margin-left: 40rem;
}
.block-benefit__title-line:nth-of-type(2) span {
  margin-left: 94rem;
}
.block-benefit__body {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.block-benefit__wrap {
  width: 100%;
  display: flex;
}

@media (max-width: 1023px) {
  .block-benefit__head {
    margin-bottom: 6rem;
  }
  .block-benefit__title-line:nth-of-type(1) span {
    margin-left: 0rem;
  }
  .block-benefit__title-line:nth-of-type(2) span {
    margin-left: auto;
  }
  .block-benefit__title-line:nth-of-type(3) span:last-of-type {
    margin-left: 11rem;
  }
  .block-benefit__body {
    overflow-x: auto;
    min-height: auto;
    padding-bottom: 0.6rem;
  }
}
.block-projects__head {
  margin-bottom: 14rem;
}
.block-projects__body {
  padding: 0rem var(--tc-offset);
}

@media (max-width: 1023px) {
  .block-projects__head {
    margin-bottom: 6rem;
  }
}
.hero-home__media {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 100vh;
}
.hero-home__video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-home__body {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
  margin-top: 4rem;
}
.hero-home__aside {
  grid-column: 1/4;
}
.hero-home__main {
  grid-column: 4/-1;
}
.hero-home__logo {
  display: block;
  width: 9.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 38/40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1023px) {
  .hero-home__media {
    height: 50rem;
  }
  .hero-home__body {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .hero-home__aside {
    display: none;
    grid-column: auto;
  }
  .hero-home__main {
    grid-column: auto;
  }
}
.page-hero__media {
  width: 100%;
  position: relative;
  background-color: var(--tc-color-grey);
}
.page-hero__media--sm {
  height: 80rem;
}
.page-hero__media--lg {
  height: 120rem;
}
.page-hero__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero__body {
  gap: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: start;
  padding: 8rem var(--tc-offset) 0rem;
}
.page-hero__aside {
  grid-column: 1/3;
  gap: 2rem;
  display: grid;
}
.page-hero__aside-date {
  color: var(--tc-color-dark);
}
.page-hero__main {
  grid-column: 4/-1;
}
.page-hero__main-text {
  grid-column: 4/-1;
}
.page-hero__main-btn, .page-hero__main-link {
  margin-top: 6rem;
}
.page-hero__props {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
.page-hero__props-list {
  gap: inherit;
  display: grid;
}
.page-hero__props-item {
  display: grid;
}
.page-hero__props-label {
  margin-bottom: 0.5rem;
}
.page-hero__props a {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .page-hero__media--sm, .page-hero__media--lg {
    height: 50rem;
  }
  .page-hero__body {
    grid-template-columns: 1fr;
    padding: 4rem var(--tc-offset) 0rem;
  }
  .page-hero__aside, .page-hero__main {
    grid-column: auto;
  }
  .page-hero__main-btn, .page-hero__main-link {
    margin-top: 4rem;
  }
  .page-hero__props {
    grid-template-columns: 1fr;
  }
}
.block-service {
  counter-reset: service 0;
}
.block-service__head {
  margin-bottom: 10rem;
}
.block-service__item {
  counter-increment: service 1;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  height: 60rem;
  padding: 3rem var(--tc-offset);
  background-color: var(--tc-color-white);
  border-top: 0.1rem solid var(--tc-color-grey);
}
.block-service__item:last-of-type {
  border-bottom: 0.1rem solid var(--tc-color-grey);
}
.block-service__item-aside {
  grid-column: 1/4;
}
.block-service__item-main {
  grid-column: 4/-3;
}
.block-service__item-count {
  display: block;
  margin-top: -1rem;
}
.block-service__item-plus {
  display: none;
}
.block-service__item-body {
  padding: 4rem 0;
}
.block-service__item-btn {
  margin-top: 6rem;
}

@media (max-width: 1023px) {
  .block-service__head {
    margin-bottom: 1rem;
  }
  .block-service__body {
    height: auto;
    margin-bottom: 8rem;
  }
  .block-service__item {
    height: auto;
    grid-template-columns: 1fr;
    padding: 3rem var(--tc-offset);
    border-top: none;
    border-bottom: 0.1rem solid var(--tc-color-grey);
  }
  .block-service__item-aside {
    display: none;
  }
  .block-service__item-main {
    grid-column: auto;
  }
  .block-service__item-head {
    gap: 1.2rem;
    display: flex;
    justify-content: space-between;
  }
  .block-service__item-title::before {
    content: counter(service, decimal-leading-zero);
    margin-right: 0.6rem;
  }
  .block-service__item-plus {
    display: flex;
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
  }
  .block-service__item-body {
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  .block-service__item-text {
    margin-top: 2rem;
  }
  .block-service__item-btn {
    display: block;
    margin-top: 4rem;
    margin-bottom: 1rem;
  }
}
.block-routing {
  padding: 0rem var(--tc-offset);
}
.block-routing__head {
  margin-bottom: 8rem;
}
.block-routing__title {
  max-width: 80%;
  grid-column: span 7;
}
.block-routing__body {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-routing__main {
  gap: 8rem;
  display: grid;
  grid-column: 4/-1;
}
.block-routing__text {
  max-width: 80%;
}
.block-article {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-article__head {
  margin-bottom: 8rem;
}
.block-article__title {
  max-width: 85%;
}
.block-article__body {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-article__aside {
  grid-column: 1/3;
}
.block-article__main {
  grid-column: 4/-1;
}

@media (max-width: 1023px) {
  .block-article__head {
    margin-bottom: 4rem;
  }
  .block-article__title {
    max-width: 100%;
  }
  .block-article__body {
    grid-template-columns: 100%;
  }
  .block-article__aside, .block-article__main {
    grid-column: auto;
  }
}
.block-certs {
  overflow: hidden;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-certs__head {
  margin-bottom: 8rem;
}
.block-certs__title {
  max-width: 80%;
}
.block-certs__swiper {
  overflow: visible;
}
.block-certs__slide {
  width: 40.3rem;
}
.block-certs__swiper-prev {
  position: absolute;
  top: 0;
  left: calc(var(--tc-offset) * -1);
  display: block;
  width: 10vw;
  height: 100%;
  z-index: 1;
}
.block-certs__swiper-next {
  position: absolute;
  top: 0;
  right: calc(var(--tc-offset) * -1);
  display: block;
  width: 10vw;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1023px) {
  .block-certs__head {
    margin-bottom: 4rem;
  }
  .block-certs__title {
    max-width: 100%;
  }
  .block-certs__slide {
    width: 13rem;
  }
  .block-certs__swiper-prev, .block-certs__swiper-next {
    display: none;
  }
}
.block-posts {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-posts__head {
  margin-bottom: 8rem;
}
.block-posts__title {
  max-width: 80%;
}
.block-posts__body {
  padding: 0rem var(--tc-offset);
  overflow: hidden;
  margin: 0rem calc(var(--tc-offset) * -1);
}
.block-posts__swiper {
  overflow: visible;
}
.block-posts__swiper-prev {
  position: absolute;
  top: 0;
  left: calc(var(--tc-offset) * -1);
  display: block;
  width: 16vw;
  height: 100%;
  z-index: 1;
}
.block-posts__swiper-next {
  position: absolute;
  top: 0;
  right: calc(var(--tc-offset) * -1);
  display: block;
  width: 16vw;
  height: 100%;
  z-index: 1;
}
.block-posts__card {
  height: auto;
  max-width: calc((100% - 4rem) / 3);
}

@media (max-width: 1023px) {
  .block-posts__head {
    margin-bottom: 4rem;
  }
  .block-posts__title {
    max-width: 100%;
  }
  .block-posts__swiper-prev, .block-posts__swiper-next {
    display: none;
  }
  .block-posts__card {
    max-width: 27.2rem;
  }
}
.block-media {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-media__head {
  margin-bottom: 3rem;
}
.block-media__media {
  position: relative;
  aspect-ratio: 16/10;
}
.block-media__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1023px) {
  .block-media__head {
    margin-bottom: 2rem;
  }
  .block-media__media {
    aspect-ratio: 3/4;
  }
}
.inner-form__fields {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3rem;
}
.inner-form__under {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.inner-form__file {
  grid-column: 1/2;
}
.inner-form__accept {
  grid-column: 2/3;
}
.inner-form__action {
  position: relative;
  grid-column: 3/4;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  .inner-form__fields {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .inner-form__under {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .inner-form__file, .inner-form__accept {
    grid-column: auto;
  }
  .inner-form__action {
    grid-column: auto;
    margin-top: 2rem;
  }
  .inner-form__submit {
    width: 100%;
  }
}
.block-person {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-person__body {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-person__media {
  grid-column: 4/-1;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}
.block-person__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.block-person__text {
  grid-column: 4/-2;
  margin-top: 4rem;
}
.block-person__info {
  grid-column: 8/-1;
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .block-person__body {
    grid-template-columns: 1fr;
  }
  .block-person__media {
    grid-column: auto;
  }
  .block-person__text {
    grid-column: auto;
    margin-top: 2rem;
  }
  .block-person__info {
    grid-column: auto;
    margin-top: 2rem;
  }
}
.block-person-lt {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-person-lt__body {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-person-lt__media {
  grid-column: 1/7;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}
.block-person-lt__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.block-person-lt__text {
  grid-column: 1/6;
  margin-top: 4rem;
}
.block-person-lt__info {
  grid-column: 5/7;
  margin-top: 4rem;
}

@media (max-width: 1023px) {
  .block-person-lt__body {
    grid-template-columns: 1fr;
  }
  .block-person-lt__media {
    grid-column: auto;
  }
  .block-person-lt__text {
    grid-column: auto;
    margin-top: 2rem;
  }
  .block-person-lt__info {
    grid-column: auto;
    margin-top: 2rem;
  }
}
.block-slogan {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
  padding: var(--tc-block-offset-lg) var(--tc-offset);
  gap: 8rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-slogan__body {
  grid-column: 1/-1;
}
.block-slogan__body-title {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.block-slogan__body-title img {
  display: inline-block;
  height: 0.7em;
  vertical-align: baseline;
  border-radius: 16rem;
}
.block-slogan__other {
  display: none;
}
.block-slogan__under {
  grid-column: 4/-1;
  border-top: 0.1rem solid var(--tc-color-grey);
  padding-top: 4rem;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.block-slogan__under-title, .block-slogan__under-text {
  max-width: 50rem;
}

@media (max-width: 1023px) {
  .block-slogan {
    gap: 6rem 2rem;
    grid-template-columns: 1fr;
  }
  .block-slogan__body {
    display: none;
  }
  .block-slogan__other {
    gap: 4rem;
    display: grid;
  }
  .block-slogan__other-media {
    position: relative;
    aspect-ratio: 16/10;
    margin-right: 4rem;
  }
  .block-slogan__other-media img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block-slogan__under {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .block-slogan__under-title, .block-slogan__under-text {
    max-width: 50rem;
  }
}
.block-spinner {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
  padding: var(--tc-block-offset-lg) var(--tc-offset);
  gap: 8rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-spinner__body {
  grid-column: 2/-2;
}
.block-spinner__media {
  width: 88rem;
  margin: 0 auto;
  position: relative;
}
.block-spinner__under {
  grid-column: 2/-2;
  border-top: 0.1rem solid var(--tc-color-grey);
  padding-top: 4.8rem;
  gap: 2rem 6rem;
  display: flex;
  flex-wrap: wrap;
}
.block-spinner__under p, .block-spinner__under a {
  flex: 1 1 30rem;
}

@media (max-width: 1023px) {
  .block-spinner {
    gap: 6rem 2rem;
    grid-template-columns: 1fr;
  }
  .block-spinner__body {
    grid-column: auto;
  }
  .block-spinner__media {
    width: 30rem;
  }
  .block-spinner__under {
    grid-column: auto;
    padding-top: 4rem;
  }
  .block-spinner__under p, .block-spinner__under a {
    flex: 1 1 100%;
  }
}
.block-team {
  padding: 0rem var(--tc-offset);
}
.block-team__head {
  margin-bottom: 8rem;
}
.block-team__title {
  max-width: 85%;
}
.block-team__body {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.block-team__col--text {
  grid-column: 1/4;
}
.block-team__col--props {
  grid-column: 4/6;
}
.block-team__col--media {
  grid-column: 6/-1;
}
.block-team__text {
  max-width: 50rem;
}
.block-team__props {
  list-style: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  gap: 0.3rem;
  display: grid;
}
.block-team__props a {
  display: inline-block;
}
.block-team__media {
  position: relative;
  aspect-ratio: 16/10;
}
.block-team__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1023px) {
  .block-team__head {
    margin-bottom: 4rem;
  }
  .block-team__title {
    max-width: 100%;
  }
  .block-team__body {
    grid-template-columns: 1fr;
  }
  .block-team__col--text {
    order: 2;
    grid-column: auto;
  }
  .block-team__col--props {
    order: 3;
    grid-column: auto;
  }
  .block-team__col--media {
    order: 1;
    grid-column: auto;
  }
  .block-team__props {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-top: 2rem;
  }
}
.archive-service {
  padding: 0rem var(--tc-offset);
  gap: 14rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.archive-service__rings {
  grid-column: 1/-1;
}
.archive-service__group {
  grid-column: 4/-1;
}

@media (max-width: 1023px) {
  .archive-service {
    gap: 6rem 2rem;
    grid-template-columns: 1fr;
  }
  .archive-service__rings {
    grid-column: auto;
  }
  .archive-service__group {
    grid-column: auto;
  }
}
.block-about {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-about__head {
  margin-bottom: 8rem;
}
.block-about__title {
  max-width: 85%;
}
.block-about__media {
  position: relative;
  aspect-ratio: 16/10;
}
.block-about__media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.block-about__list {
  list-style: none;
  gap: 4rem;
  display: grid;
  margin-top: 6rem;
}

@media (max-width: 1023px) {
  .block-about__head {
    margin-bottom: 4rem;
  }
  .block-about__title {
    max-width: 100%;
  }
  .block-about__media {
    aspect-ratio: 9/12;
  }
  .block-about__list {
    gap: 2rem;
    margin-top: 4rem;
  }
}
.block-hovering__inner {
  position: relative;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-hovering__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--tc-offset);
}
.block-hovering__item-name {
  position: relative;
  font-size: 12rem;
  line-height: 12rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-left: var(--space-lg, 0);
  transition: color 0.5s, opacity 0.5s;
}
.block-hovering__item-name.hide {
  color: #E3E3E3;
  opacity: 0.5;
}
.block-hovering__media {
  position: fixed;
  top: 0;
  left: 0;
  width: 60rem;
  aspect-ratio: 3/2;
  pointer-events: none;
  opacity: 0;
}
.block-hovering__media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}
.block-hovering__media-item.active {
  opacity: 1;
}
.block-hovering__media-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block-hovering__label {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
  }
  .block-hovering__item-name {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.02em;
    margin-left: var(--space-sm, 0);
  }
  .block-hovering__item-name.hide {
    color: initial;
    opacity: initial;
  }
  .block-hovering__media {
    display: none;
  }
}
.block-table {
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.block-table__head {
  margin-bottom: 8rem;
}
.block-table__head-title {
  max-width: 80%;
}
.block-table__sticky {
  display: none;
  position: fixed;
  left: var(--tc-offset);
  bottom: var(--tc-offset);
  animation: tc-fade 0.25s;
}
.block-table__notice {
  color: #ffffff;
  background-color: #000000;
  padding: 2rem;
}
.block-table__body {
  margin-top: -2rem;
  margin-left: calc(var(--tc-offset) * -1);
  margin-right: calc(var(--tc-offset) * -1);
  display: flex;
  overflow: auto;
  padding-bottom: 2rem;
}
.block-table__body::after, .block-table__body::before {
  content: "";
  width: var(--tc-offset);
  display: block;
  background: transparent;
  flex-shrink: 0;
}
.block-table__body::-webkit-scrollbar {
  height: 0.8rem;
}
.block-table__body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 2rem var(--tc-color-grey);
  border-left: var(--tc-offset) solid transparent;
  border-right: var(--tc-offset) solid transparent;
}
.block-table__body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 2rem var(--tc-color-black);
  border-left: var(--tc-offset) solid transparent;
  border-right: var(--tc-offset) solid transparent;
}
.block-table__table {
  min-width: calc((100vw - var(--tc-offset) * 2 - var(--tc-offset-scroll, 17px)) / 5 * var(--total-columns));
}
.block-table__footer {
  margin-top: 6rem;
  gap: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  justify-items: start;
}
.block-table__toggle {
  grid-column: 4/-1;
  gap: 1.2rem;
  display: flex;
  align-items: center;
  transition: opacity 0.25s;
}
.block-table__toggle:hover {
  opacity: 0.5;
}
.block-table__action {
  grid-column: 4/-1;
  gap: 2rem;
  display: grid;
}

@media (max-width: 1023px) {
  .block-table__head {
    margin-bottom: 4rem;
  }
  .block-table__title {
    max-width: 100%;
  }
  .block-table__body::-webkit-scrollbar {
    height: 0.4rem;
  }
  .block-table__table {
    min-width: calc((100vw - var(--tc-offset) * 2) * var(--total-columns));
  }
  .block-table__footer {
    margin-top: 4rem;
    gap: 4rem 2rem;
    grid-template-columns: 1fr;
  }
  .block-table__toggle {
    grid-column: auto;
  }
  .block-table__action {
    grid-column: auto;
    gap: 1rem;
  }
}
.home-block {
  margin-bottom: var(--tc-block-offset-lg);
}

.home-block__upper {
  height: 20rem;
  padding-top: var(--tc-offset);
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
  padding-bottom: var(--tc-offset);
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.home-block__upper-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: -0.02em;
}

.home-block__upper-label {
  color: var(--tc-color-grey);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: -0.02em;
  text-align: right;
}

.home-block__media {
  height: 100vh;
  margin-bottom: 4rem;
}

.home-block__props {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-block__props.is-moved {
  position: absolute;
  top: calc(27.2rem * var(--progress, 0));
  left: 0;
  width: 100%;
  height: 100dvh;
}

.home-block__video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-block__sound {
  z-index: 1;
  position: absolute;
  left: 4rem;
  bottom: 4rem;
  display: block;
  width: 7.2rem;
  height: 7.2rem;
  border: none;
  border-radius: 50%;
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}

.home-block__sound::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: var(--mask-icon);
          mask-image: var(--mask-icon);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 3.2rem 3.2rem;
          mask-size: 3.2rem 3.2rem;
  background-color: currentColor;
}

.home-block__sound--mute {
  --mask-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMS4yIiBkPSJNMjEgMTFjMS4yNyAxLjMyIDEuOTkgMy4xMiAyIDQuOTkgMCAxLjg3LS43IDMuNjctMS45NiA1LjAxTTI1IDhjMS45MSAyLjEyIDIuOTkgNC45OSAzIDcuOTkuMDEgMy0xLjA1IDUuODgtMi45NCA4LjAxIi8+PHBhdGggZD0iTTE1IDYuNjZ2MTguNjhjMCAxLjQ2LS43OSAxLjc2LTEuNzUuNjZsLTQuOC01LjQ5Yy0uMjUtLjI4LS43NS0uNTctMS4xMS0uNjRsLTEuMzktLjI4Yy0xLjYyLS4zMi0yLjk0LTEuOTQtMi45NC0zLjU5czEuMzItMy4yNiAyLjk0LTMuNTlsMS4zOS0uMjhjLjM3LS4wNy44Ny0uMzYgMS4xMS0uNjRMMTMuMjUgNmMuOTYtMS4xIDEuNzUtLjgxIDEuNzUuNjZ6Ii8+PC9zdmc+");
}

.home-block__sound--unmute {
  --mask-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZD0iTTE1IDYuNjZ2MTguNjhjMCAxLjQ2LS43OSAxLjc2LTEuNzUuNjZsLTQuOC01LjQ5Yy0uMjUtLjI4LS43NS0uNTctMS4xMS0uNjRsLTEuMzktLjI4Yy0xLjYyLS4zMi0yLjk0LTEuOTQtMi45NC0zLjU5czEuMzItMy4yNiAyLjk0LTMuNTlsMS4zOS0uMjhjLjM3LS4wNy44Ny0uMzYgMS4xMS0uNjRMMTMuMjUgNmMuOTYtMS4xIDEuNzUtLjgxIDEuNzUuNjZ6Ii8+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMS4yIiBkPSJtMjAgMTIgOCA4bS04IDAgOC04Ii8+PC9zdmc+");
}

.home-block__going {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 5.2rem;
  transform: translate(-50%, 0);
  color: var(--tc-color-white);
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
  text-transform: uppercase;
  width: 12rem;
  gap: 0.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: none;
  background: none;
  mix-blend-mode: difference;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.home-block__going::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0yMSA3Ljc1LTkgOC41LTktOC41Ii8+PC9zdmc+");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0yMSA3Ljc1LTkgOC41LTktOC41Ii8+PC9zdmc+");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}

.home-block__under {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}

.home-block__under-image {
  display: block;
  width: 9.6rem;
  height: 9.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.home-block__under-basis {
  grid-column: span 2;
}

@media (max-width: 1023px) {
  .home-block__upper {
    height: auto;
    padding-top: 2.4rem;
    grid-template-columns: 1fr;
  }
  .home-block__upper-title {
    display: none;
  }
  .home-block__upper-label {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .home-block__media {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
  }
  .home-block__props.is-moved {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .home-block__sound {
    left: 1.6rem;
    bottom: 1.6rem;
    width: 4rem;
    height: 4rem;
  }
  .home-block__sound::after {
    -webkit-mask-size: 2.4rem 2.4rem;
            mask-size: 2.4rem 2.4rem;
  }
  .home-block__going {
    display: none;
  }
  .home-block__under {
    grid-template-columns: 1fr;
  }
  .home-block__under-aside {
    display: none;
    grid-column: auto;
  }
  .home-block__under-basis {
    grid-column: auto;
  }
}
.archive-research {
  gap: 8rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
}
.archive-research__best {
  grid-column: 1/-1;
  gap: 4rem;
  display: grid;
}
.archive-research__btns {
  display: none;
}
.archive-research__btns-modal, .archive-research__btns-reset {
  font-size: 2rem;
  line-height: 2.8rem;
  border: 0;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  transition: opacity 250ms;
}
.archive-research__btns-modal {
  color: inherit;
}
.archive-research__btns-reset {
  color: var(--tc-color-grey);
}
.archive-research__aside {
  grid-column: 1/4;
}
.archive-research__aside-close {
  display: none;
}
.archive-research__main {
  grid-column: 4/-1;
}
.archive-research__list {
  gap: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.archive-research__card:nth-of-type(3n+3) {
  grid-column: 1/-1;
}
.archive-research .pagination {
  margin-top: 4rem;
  grid-column: 1/-1;
}

@media (max-width: 1023px) {
  .archive-research {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  .archive-research__best {
    gap: 2rem;
  }
  .archive-research__btns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .archive-research__aside {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    transform: translate(100%, 0);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--tc-color-white);
  }
  .archive-research__aside-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 6.4rem;
    height: 6.4rem;
    border: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background-color: var(--tc-color-black);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjOTk5IiBzdHJva2Utd2lkdGg9IjIiIGQ9Im00LjY5IDQuNjkgMjIuNjIgMjIuNjJtMC0yMi42M0w0LjY5IDI3LjMxIi8+PC9zdmc+");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 3.2rem 3.2rem;
  }
  .archive-research__main {
    grid-column: auto;
  }
  .archive-research__list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .archive-research .pagination {
    margin-top: 2rem;
  }
}
.archive-project {
  padding: 0rem var(--tc-offset);
}
.archive-project .pagination {
  grid-column: 1/-1;
}

.project-listing {
  gap: 10rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: start;
}
.project-listing a:nth-of-type(4n+1) {
  grid-column: 1/6;
}
.project-listing a:nth-of-type(4n+2) {
  grid-column: 7/10;
}
.project-listing a:nth-of-type(4n+3) {
  grid-column: 4/10;
}
.project-listing a:nth-of-type(4n+4) {
  grid-column: 1/9;
}
.project-listing__spacer {
  grid-column: 4/-1;
  gap: 2rem;
  display: grid;
  margin-top: 4rem;
  margin-bottom: 10rem;
}
.project-listing > :last-child {
  margin-bottom: 0rem;
}

@media (max-width: 1023px) {
  .project-listing {
    gap: 6rem 2rem;
    grid-template-columns: 1fr;
  }
  .project-listing a:nth-of-type(4n+1),
  .project-listing a:nth-of-type(4n+2),
  .project-listing a:nth-of-type(4n+3),
  .project-listing a:nth-of-type(4n+4) {
    grid-column: auto;
  }
  .project-listing__spacer {
    grid-column: auto;
    gap: 1rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  .project-listing a:nth-of-type(4n+1) .project-card__media {
    aspect-ratio: 12/13;
  }
  .project-listing a:nth-of-type(4n+2) .project-card__media {
    aspect-ratio: 11/10;
  }
  .project-listing a:nth-of-type(4n+3) .project-card__media {
    aspect-ratio: 4/5;
  }
  .project-listing a:nth-of-type(4n+4) .project-card__media {
    aspect-ratio: 9/12;
  }
}
.page-not-found {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  grid-template-rows: auto 1fr;
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}
.page-not-found__app {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-not-found__app #container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: invert(1);
}
.page-not-found__head {
  pointer-events: none;
  position: relative;
  padding-top: 2rem;
  padding-left: var(--tc-offset);
  padding-right: var(--tc-offset);
  padding-bottom: 5rem;
}
.page-not-found__head-crumbs {
  margin-top: 1rem;
}
.page-not-found__head-back {
  position: absolute;
  top: 0;
  right: var(--tc-offset);
  width: 12.8rem;
  height: 12.8rem;
  padding: 3.2rem;
}
.page-not-found__body {
  pointer-events: none;
  position: relative;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 15rem;
  gap: 1.6rem;
  display: grid;
  align-content: center;
}
.page-not-found__body-title sup {
  font-size: 0.5em;
  letter-spacing: inherit;
  display: inline-block;
}
.page-not-found__body-title span {
  display: block;
}
.page-not-found__body-title span:nth-of-type(even) {
  text-align: right;
}
.page-not-found__body-text {
  text-align: right;
}
.page-not-found a {
  pointer-events: all;
}

@media (max-width: 1023px) {
  .page-not-found__app #container {
    filter: none;
  }
  .page-not-found__head {
    padding-bottom: 4rem;
  }
  .page-not-found__head-back {
    right: 0;
    width: 6.4rem;
    height: 6.4rem;
    padding: 1.2rem;
  }
  .page-not-found__body {
    padding-left: var(--tc-offset);
    padding-right: var(--tc-offset);
  }
  .page-not-found__body-title sup {
    transform: translate(-1rem, -100%);
  }
  .page-not-found__body-title span:nth-of-type(even) {
    text-align: initial;
    padding-left: 4.8rem;
  }
  .page-not-found__body-text {
    text-align: initial;
    padding-left: 5rem;
    padding-right: initial;
  }
}
.page-contact {
  padding: 0rem var(--tc-offset, 0);
  gap: 0rem 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  transition: color 0.6s, background-color 0.6s;
}
.page-contact__header {
  margin: 0rem calc(var(--tc-offset) * -1);
  grid-column: 1/-1;
}
.page-contact__header .fp-overflow {
  overflow: visible;
}
.page-contact__navbar {
  padding-top: 2.4rem;
}
.page-contact__crumbs {
  padding: 0rem var(--tc-offset, 0);
}
.page-contact__sticky {
  grid-row: 2/5;
  grid-column: 1/6;
}
.page-contact__middle {
  grid-column: 6/-1;
}
.page-contact__footer {
  margin: 0rem -2rem;
  grid-column: 1/-1;
}
.page-contact__sticky-inner {
  padding: 16rem 0rem;
  top: 0;
  height: 100vh;
  position: sticky;
}
.page-contact__sticky-title {
  display: grid;
  max-width: 64rem;
}
.page-contact__svg {
  opacity: 0.5;
  position: absolute;
  top: 8rem;
  left: -2rem;
  display: block;
  height: calc(100vh - 16rem);
  max-height: 80rem;
  aspect-ratio: 1/1;
  fill: none;
  stroke: currentColor;
}
.page-contact__svg-r, .page-contact__svg-a, .page-contact__svg-b, .page-contact__svg-c {
  transition: stroke-dashoffset 800ms ease-in-out;
}

@media (max-width: 1023px) {
  .page-contact {
    padding: 0rem;
    grid-template-columns: 1fr;
  }
  .page-contact__header {
    margin: 0;
  }
  .page-contact__sticky {
    grid-row: auto;
    grid-column: auto;
  }
  .page-contact__middle {
    padding: 0 var(--tc-offset);
    grid-column: auto;
  }
  .page-contact__middle--black {
    color: #ffffff;
    background-color: #000000;
  }
  .page-contact__footer {
    margin: 0rem;
    grid-column: auto;
  }
  .page-contact__sticky {
    display: none;
  }
}
.title-swap--xl {
  font-size: 8rem;
  line-height: 9rem;
  letter-spacing: -0.04em;
}
.title-swap__line {
  gap: 0.25em;
  display: flex;
}
.title-swap__wrap {
  overflow: hidden;
  position: relative;
}
.title-swap__wrap::before {
  content: attr(data-placeholder);
  color: transparent;
  display: block;
}
.title-swap__wrap div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: transform 0.6s, opacity 0.3s;
}

.fp-viewing-3 .page-contact {
  color: var(--tc-color-white);
  background-color: var(--tc-color-black);
}

.fp-viewing-1 .title-swap__wrap div:nth-child(1),
.fp-viewing-2 .title-swap__wrap div:nth-child(1) {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
.fp-viewing-1 .title-swap__wrap div:nth-child(2),
.fp-viewing-2 .title-swap__wrap div:nth-child(2) {
  transform: translateY(100%) translateZ(0);
}
.fp-viewing-1 .title-swap__wrap div:nth-child(3),
.fp-viewing-2 .title-swap__wrap div:nth-child(3) {
  transform: translateY(100%) translateZ(0);
}

.fp-viewing-3 .title-swap__wrap div:nth-child(1) {
  transform: translateY(-100%) translateZ(0);
}
.fp-viewing-3 .title-swap__wrap div:nth-child(2) {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
.fp-viewing-3 .title-swap__wrap div:nth-child(3) {
  transform: translateY(100%) translateZ(0);
}

.fp-viewing-4 .title-swap__wrap div:nth-child(1),
.fp-viewing-5 .title-swap__wrap div:nth-child(1) {
  transform: translateY(-100%) translateZ(0);
}
.fp-viewing-4 .title-swap__wrap div:nth-child(2),
.fp-viewing-5 .title-swap__wrap div:nth-child(2) {
  transform: translateY(-100%) translateZ(0);
}
.fp-viewing-4 .title-swap__wrap div:nth-child(3),
.fp-viewing-5 .title-swap__wrap div:nth-child(3) {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.fp-viewing-1 .page-contact__svg-r {
  stroke-dashoffset: 0;
}

.fp-viewing-2 .page-contact__svg-r,
.fp-viewing-2 .page-contact__svg-a {
  stroke-dashoffset: 0;
}

.fp-viewing-3 .page-contact__svg-r,
.fp-viewing-3 .page-contact__svg-b {
  stroke-dashoffset: 0;
}

.fp-viewing-4 .page-contact__svg-r,
.fp-viewing-4 .page-contact__svg-c {
  stroke-dashoffset: 0;
}

.fp-viewing-5 .page-contact__svg-r {
  stroke-dashoffset: 0;
}

.fp-watermark {
  display: none;
}

.contact-section {
  height: 100vh;
  padding: var(--tc-block-offset-lg) 0rem;
  gap: 6rem;
  display: flex;
  flex-direction: column;
}
.contact-section__head {
  display: none;
}
.contact-section__form--wide {
  flex-grow: 1;
}
.contact-section__block {
  border-top: 0.1rem solid currentColor;
  padding-top: 3rem;
}
.contact-section__block--wide {
  flex-grow: 1;
}
.contact-section__props {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
.contact-section__props-head {
  gap: 2rem;
  display: grid;
}
.contact-section__props-body {
  gap: 2rem;
  display: grid;
  justify-items: end;
}
.contact-section__props-email, .contact-section__props-phone {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .contact-section {
    height: auto;
    gap: 4rem;
  }
  .contact-section__head {
    display: block;
  }
  .contact-section__block {
    padding-top: 2rem;
  }
  .contact-section__block--wide {
    min-height: 20rem;
  }
  .contact-section__props {
    grid-template-columns: 1fr;
  }
  .contact-section__props-head {
    gap: 2rem;
    display: grid;
  }
  .contact-section__props-body {
    justify-items: start;
  }
  .contact-section__props-email, .contact-section__props-phone {
    text-decoration: none;
  }
}
.contact-form {
  gap: 2rem 1.6rem;
  display: grid;
}
.contact-form__fields {
  gap: inherit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-form__footer {
  margin-top: 0.5rem;
  gap: inherit;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact-form__name {
  grid-column: 1/2;
}
.contact-form__message {
  grid-row: 1/5;
  grid-column: 2/-1;
}
.contact-form__email {
  grid-column: 1/2;
}
.contact-form__phone {
  grid-column: 1/2;
}
.contact-form__business {
  grid-column: 1/2;
}
.contact-form__action {
  position: relative;
}
.contact-form__submit {
  width: 100%;
}
.contact-form__response {
  display: none;
}

@media (max-width: 1023px) {
  .contact-form__fields, .contact-form__footer {
    grid-template-columns: 1fr;
  }
  .contact-form__name, .contact-form__email, .contact-form__message, .contact-form__phone, .contact-form__business {
    grid-column: auto;
  }
  .contact-form__message {
    grid-row: auto;
  }
  .contact-form__action {
    grid-column: auto;
    margin-top: 1.5rem;
  }
}