@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=JetBrains+Mono:wght@100..800&display=swap");
@keyframes separatorAnimation {
  0% {
    width: 30%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sequentialShow {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  50%, 80% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20%, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes reveal {
  0% {
    clip-path: inset(0% 100% 0% 0%);
  }
  60% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: calc(var(--length) * 1ch);
  }
}
@keyframes offers-in {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  30% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes offers-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  70% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes sticky-title {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes sticky-last-title {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes sticky-title-new {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes sticky-last-title-new {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 100% 0 0);
  }
}
@keyframes roots-in {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(2);
  }
}
:root {
  --primary-100:#0085FF;
  --primary-200:#69B4FF;
  --primary-300:#CCE6FF;
  --accent-100:#FFC107;
  --accent-200:#917800;
  --text-100:#FFFFFF;
  --text-200:#aeaeae;
  --bg-100:#060c1c;
  --bg-200:#0F1626;
  --bg-300:#1e2436;
  --header-height: 168px;
  --transition-time: .3s;
  --border-radius: .25rem;
}
@media (min-width: 993px) and (max-height: 720px) and (orientation: landscape) {
  :root {
    --header-height: 104px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 88px;
  }
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
}
*::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  min-height: 100%;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}
@media (min-height: 900px) and (orientation: landscape) {
  html {
    scroll-snap-type: y mandatory;
  }
}

html, body {
  display: flex;
  flex-direction: column;
}

body {
  background: var(--bg-100);
  font-family: "Montserrat", sans-serif;
  flex: 1;
  line-height: 1.5;
  margin: 0;
  accent-color: var(--accent-100);
  max-width: 100vw;
  overflow: hidden auto;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

main > section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text-100);
  scroll-snap-align: start;
  padding-top: calc(var(--header-height) - 1.5rem);
  padding-bottom: 3rem;
}

main .section-bg {
  position: fixed;
  inset: 0;
  display: grid;
  z-index: -1;
}
main .section-bg div {
  background: no-repeat center top;
  background-size: cover;
  opacity: 0;
  grid-column: 1;
  grid-row: 1;
  transition: calc(var(--transition-time) * 2);
}
main .section-bg div video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
main .section-bg div.active {
  opacity: 0.3;
}
main .section-bg div.active:has(video) {
  background: color-mix(in-hsl, var(--bg-100), transparen 30%);
  opacity: 1;
  z-index: 2;
}

h1, h2, h3 {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, p {
  line-height: 1.5;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1rem;
  }
}

a, p, li, input, textarea, label, button, figcaption {
  font-size: 1.25rem;
}
@media (min-width: 993px) and (max-height: 720px) and (orientation: landscape) {
  a, p, li, input, textarea, label, button, figcaption {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  a, p, li, input, textarea, label, button, figcaption {
    font-size: 1rem;
  }
}

p, li {
  color: var(--text-100);
}

label, input, textarea {
  font-family: inherit;
}

a {
  color: var(--accent-100);
  transition: var(--transition-time);
}

button {
  border: none;
  border-radius: 4px;
  padding: 0.25rem 1rem;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

header {
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  transition: calc(var(--transition-time) * 2);
  display: flex;
  justify-content: space-between;
  padding: 4rem;
}
@media (min-width: 993px) and (max-height: 720px) and (orientation: landscape) {
  header {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  header {
    padding: 1.5rem;
  }
}
header.scrolled svg {
  clip-path: inset(0 calc(100% - 40px) 0 0);
}
header.scrolled .title-copy::before {
  opacity: 1;
}
@media (max-width: 767px) {
  header.has-bg {
    background: linear-gradient(to bottom, var(--bg-100) 70%, transparent 100%);
  }
}
header svg {
  height: 2.5rem;
  width: auto;
  clip-path: inset(0 0);
  transition: calc(var(--transition-time) * 2);
}
header .title-copy {
  color: var(--text-100);
  position: absolute;
  left: 7.5rem;
  font-size: 30px;
  font-family: math, serif;
  font-weight: 600;
}
header .title-copy::before {
  content: "";
  /* background: linear-gradient(to bottom, var(--bg-100) 80%, transparent 100%); */
  position: absolute;
  inset: -7rem -3rem -3rem -7rem;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-time);
}
header .title-copy span {
  display: inline-block;
}
header .title-copy::after {
  content: attr(data-last-title);
  position: absolute;
  inset: 0 auto 0 0;
  white-space: nowrap;
  opacity: 0;
}
header .title-copy.updated span {
  animation: sticky-title-new calc(var(--transition-time) * 2) ease-in-out;
}
header .title-copy.updated::after {
  animation: sticky-last-title-new calc(var(--transition-time) * 2) ease-in-out;
}
@media (max-width: 767px) {
  header .title-copy {
    display: none;
    left: calc(var(--container-margin) + 3.5rem);
  }
}
header nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 50vw;
  min-width: 40rem;
  height: 100vh;
  background: var(--bg-200);
  box-shadow: 0px -0.5rem 10px black;
  z-index: 2;
  padding: calc(var(--header-height) + 4rem) 4rem 4rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: end;
  overflow: hidden auto;
  transform: translateX(calc(100% + 2rem));
  transition: calc(var(--transition-time) * 2);
}
header nav a {
  color: var(--text-100);
  font-size: 3rem;
  text-decoration: none;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
header nav a:hover {
  color: var(--accent-100);
  text-decoration: underline;
}
header nav a[data-side-panel] {
  font-size: 1rem;
}
header nav a.sub-section {
  font-size: 1rem;
}
@media (max-width: 767px) {
  header nav a {
    font-size: 1.5rem;
  }
  header nav a[data-side-panel] {
    font-size: 1rem;
  }
}
header nav .inner-links {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: end;
  margin-top: -1.5rem;
}
header nav.menu-open {
  transform: translateX(0);
}
header nav .side-panel-links {
  display: flex;
  gap: 2.5rem;
  margin-top: auto;
}
@media (max-width: 767px) {
  header nav {
    min-width: 0;
    width: 100vw;
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 1.5rem;
  }
  header nav .side-panel-links {
    flex-direction: column;
    gap: 1rem;
    align-items: end;
  }
}
header .menu-toggle {
  background: none;
  border: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  z-index: 9;
}
header .menu-toggle span {
  position: absolute;
  width: 2.5rem;
  height: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: var(--text-100);
  transition: calc(var(--transition-time) * 2);
}
header .menu-toggle span:nth-child(2) {
  transform: translateY(-1rem);
  width: 1.5rem;
  left: 0;
}
header .menu-toggle span:nth-child(3) {
  transform: translateY(1rem);
  width: 1rem;
  left: 0;
}
header .menu-toggle.menu-open span:nth-child(1) {
  transform: translateX(60px);
}
header .menu-toggle.menu-open span:nth-child(2) {
  width: 40px;
  transform: translateX(0) rotate(45deg);
  transition-delay: 0.2s;
}
header .menu-toggle.menu-open span:nth-child(3) {
  width: 40px;
  transform: translateX(0) rotate(-45deg);
  transition-delay: 0.4s;
}

footer {
  background: radial-gradient(circle, color-mix(in hsl, var(--primary-100), transparent 75%) 10%, transparent 11%);
  background-size: 1em 1em;
  background-color: var(--bg-100);
  border-top: 4px solid var(--accent-100);
  padding: 4rem 0;
  scroll-snap-align: end;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .footer-columns {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  footer .footer-columns {
    flex-direction: column;
  }
}
footer .bottom-container {
  display: flex;
  gap: 1.5rem;
  padding-top: 0 !important;
}
footer .bottom-container a {
  display: inline-flex;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  footer .bottom-container {
    flex-direction: column;
  }
}
footer section {
  flex: 1;
}
footer section svg {
  height: 2.5rem;
  width: auto;
  margin-bottom: 2rem;
}
footer section a, footer section p {
  font-size: 1rem;
}
footer section p {
  color: var(--text-100);
  margin-bottom: 0.5rem;
}
footer section a {
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
footer section a::after {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z" fill="%23FFC107" /></svg>') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  opacity: 0;
  transition: var(--transition-time);
  transform: translateX(-100%);
}
footer section a:hover {
  color: var(--accent-100);
  text-decoration: underline;
}
footer section a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
footer section:first-child {
  flex: 1.5 1 0;
}
footer section:not(:first-child) {
  padding-top: 4.5rem;
}
@media (max-width: 767px) {
  footer section:not(:first-child) {
    padding-top: 0;
  }
}

.footer-separator {
  background-color: var(--bg-300);
}

.home-block {
  background-size: auto 100%;
  padding-top: 3rem;
  position: relative;
  /* &.roots{
    &::before{
      display: none;
    }
    &::after{
      display: block;
      animation: 120s roots-in forwards;
    }
  } */
}
@media (max-width: 767px) {
  .home-block {
    padding-bottom: 8rem;
  }
}
.home-block::before {
  content: "";
  background: transparent url(/assets/img/tree-roots.png) no-repeat left top;
  background-size: auto 100%;
  position: absolute;
  width: 100%;
  height: 120%;
  inset: 0 0 auto 0;
  pointer-events: none;
}
.home-block::after {
  content: "";
  background: transparent url(/assets/img/roots.png) no-repeat left top;
  background-size: auto 100%;
  position: absolute;
  width: 100%;
  height: 20%;
  inset: 100% 0 auto 0;
  pointer-events: none;
  display: none;
  transform-origin: left top;
}
@media (max-width: 1200px) {
  .home-block::before {
    background-image: url(/assets/img/tree.png);
    background-size: auto 100%;
    display: block !important;
    height: 100% !important;
  }
  .home-block::after {
    display: none !important;
  }
}
.home-block .bg-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: auto 100%;
}
.home-block .bg-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-block .bg-video::after {
  content: "";
  background: var(--bg-100);
  position: absolute;
  inset: 0;
  opacity: 0.9;
  mix-blend-mode: darken;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: 0.6s;
}
.home-block .bg-video.bg-light::after {
  opacity: 0.6;
}
.home-block .bg-video .video-container {
  background: var(--bg-100);
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.home-block .bg-video .video-container iframe {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  transition: opacity 0.3s;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media (max-aspect-ratio: 16/9) {
  .home-block .bg-video .video-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-block .bg-video .video-container iframe {
    aspect-ratio: 16/9;
    height: 100%;
    left: 50%;
    width: auto;
    transform: translateX(-50%) scale(1.1);
  }
}
.home-block .container {
  display: flex;
  flex: 1;
}
.home-block .text-content {
  display: flex;
  gap: 1.5rem;
  margin: auto auto 0;
  min-width: 0;
  /* h2{
    color: var(--text-200);
    font-family: "JetBrains Mono", monospace;
    font-size: 2.5rem;
    margin: 0;
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    animation: sequentialShow 15s infinite;
    animation-delay: calc(var(--index) * 3s);
  } */
}
@media (max-width: 767px) {
  .home-block .text-content {
    flex-direction: column;
  }
}
.home-block .text-content .title-content {
  flex: 1 1 55%;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.home-block .text-content .title-content .text-glow {
  color: transparent;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-75deg, transparent 30%, var(--text-100) 50%, transparent 70%);
  background-size: 2lh 100%;
  background-repeat: no-repeat;
  background-position-x: -2lh;
  position: absolute;
  opacity: 0.5;
  -webkit-background-clip: text;
          background-clip: text;
  mix-blend-mode: color-dodge;
  margin: 0;
  transition: 1.5s;
  text-wrap: wrap;
  text-wrap: pretty;
  z-index: 2;
}
.home-block .text-content .title-content:hover .text-glow {
  background-position-x: calc(100% + 2lh);
}
.home-block .text-content .main-text {
  margin: 0;
  text-wrap: wrap;
  text-wrap: pretty;
  animation: fadeIn 1s forwards;
  position: relative;
}
.home-block .text-content .main-text span {
  background: linear-gradient(to bottom, #E0C985 15%, #FFD24D 40%, #3A2C0F 85%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 100% 1lh;
  color: var(--accent-100);
}
.home-block .text-content .main-text::after {
  content: attr(data-heading)/"";
  background: none;
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
  text-shadow: -1px 0 1px #CDC098, 0 1px 1px #CDC098, 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(0, 0, 0, 0.4);
}
.home-block .text-content .separator {
  border: 1px solid var(--accent-100);
  flex: 0;
  height: 15rem;
  width: 2px;
  min-width: 0;
  animation: separatorAnimation 1s forwards;
}
.home-block .text-content .subtitles {
  display: flex;
  flex: 1 1 45%;
  min-width: 0;
}
.home-block .text-content .subtitles .swiper {
  --swiper-pagination-bullet-inactive-color: var(--text-200);
  --swiper-pagination-color: var(--accent-100);
  --swiper-pagination-bullet-size: .625rem;
  flex: 1;
  width: 100%;
  min-width: 0;
}
.home-block .text-content .subtitles .swiper .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .home-block .text-content .subtitles .swiper .swiper-pagination {
    top: 100%;
  }
}
.home-block .text-content .subtitles .item {
  display: flex;
  flex-direction: column;
}
.home-block .text-content .subtitles .item h2 span, .home-block .text-content .subtitles .item p {
  transition: calc(var(--transition-time) * 2);
  transition-delay: var(--transition-time);
}
.home-block .text-content .subtitles .item h2 {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.home-block .text-content .subtitles .item h2 .title-icon {
  border-radius: calc(var(--size) / 5 * 2) 0;
  margin-top: 0.625rem;
}
.home-block .text-content .subtitles .item h2 span:not(.title-icon) {
  clip-path: inset(0 100% 0 0);
}
.home-block .text-content .subtitles .item p {
  color: var(--text-100);
  font-size: 2.5rem;
  opacity: 0;
}
.home-block .text-content .subtitles .item p a {
  opacity: 0;
  transform: translateX(-50%);
  transition: var(--transition-time);
}
.home-block .text-content .subtitles .item p:hover a {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) and (max-width: 992px) {
  .home-block .text-content .subtitles .item p {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .home-block .text-content .subtitles .item p {
    font-size: 1.5rem;
  }
}
.home-block .text-content .subtitles .item a {
  display: inline-flex;
  font-size: 2.5rem;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  top: 0.25rem;
}
.home-block .text-content .subtitles .item a span {
  display: block;
}
.home-block .text-content .subtitles .item a .icon {
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="%23FFC107" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19.7 11.3c.4.4.4 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4l6-6a1 1 0 0 1 1.4 0Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.7 5.3a1 1 0 1 0-1.4 1.4l4.3 4.3H5a1 1 0 1 0 0 2h14a1 1 0 0 0 1-1 1 1 0 0 0-.3-.7m0 0-6-6Z"/></svg>') no-repeat center;
  background-size: contain;
  width: 0.75em;
  height: 0.75em;
}
.home-block .text-content .subtitles .item.swiper-slide-active .title-icon {
  border-radius: 0 calc(var(--size) / 5 * 2);
}
.home-block .text-content .subtitles .item.swiper-slide-active span:not(.title-icon) {
  clip-path: inset(0 0 0 0);
}
.home-block .text-content .subtitles .item.swiper-slide-active p {
  opacity: 1;
}

.is-ios .home-block .text-content .title-content .text-glow {
  display: none;
}

.our-offer {
  --viewport-margin: 20vh;
  position: relative;
  padding-top: calc(var(--header-height) + var(--viewport-margin));
  padding-bottom: calc(var(--header-height) + var(--viewport-margin));
  scroll-snap-align: unset;
}
@media (max-width: 1200px) {
  .our-offer {
    --viewport-margin: 10vh;
  }
}
@media (max-width: 767px) {
  .our-offer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.our-offer .section-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/image_fx_17.jpg") no-repeat center top;
  background-size: 100% 100vh;
  background-attachment: fixed;
  opacity: 0.2;
  display: none;
}
.our-offer .container {
  margin-top: auto;
  margin-bottom: auto;
}
.our-offer .offers-grid {
  display: flex;
  flex-direction: column;
  gap: 20vh;
}
@media (min-width: 768px) and (max-width: 992px) {
  .our-offer .offers-grid {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid {
    gap: 3rem;
  }
}
.our-offer .offers-grid section {
  --accent-color: var(--accent-100);
  --main-col-width: 25rem;
  display: flex;
  gap: 3rem;
  scroll-margin-top: 35vh;
  position: relative;
  scroll-snap-align: start;
}
@media (max-width: 1200px) {
  .our-offer .offers-grid section {
    --main-col-width: 20rem;
  }
}
@media (min-width: 993px) and (max-height: 720px) and (orientation: landscape) {
  .our-offer .offers-grid section {
    scroll-margin-top: var(--header-height);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .our-offer .offers-grid section {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid section {
    flex-direction: column;
    gap: 1.5rem;
    scroll-margin-top: 88px;
  }
}
.our-offer .offers-grid section::after {
  content: "";
  position: absolute;
  left: calc(var(--main-col-width) + 1.5rem);
  height: calc(100% + 20vh);
  border: 1px solid var(--accent-100);
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 992px) {
  .our-offer .offers-grid section::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid section::after {
    display: none;
  }
}
.our-offer .offers-grid section:first-child::after {
  height: calc(100% + var(--header-height) + var(--viewport-margin) + 20vh);
  top: calc((var(--header-height) + var(--viewport-margin)) * -1);
}
.our-offer .offers-grid section:last-child::after {
  height: calc(100% + var(--header-height) + var(--viewport-margin));
  top: 0;
}
.our-offer .offers-grid section h3, .our-offer .offers-grid section p {
  /* @include supports(animation-timeline, view()){
    animation: offers-in forwards, offers-out forwards;
    animation-timeline: view();
    animation-range: cover 0% cover 50%, exit calc(var(--header-height) * -1.5);
  }
  @include phone{
    animation: none;
  } */
  transform-origin: left center;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.6s;
}
@media (min-width: 1024px) and (max-height: 720px) and (orientation: landscape) {
  .our-offer .offers-grid section h3, .our-offer .offers-grid section p {
    padding-top: 10vw;
  }
}
@media (max-width: 1023px) and (max-height: 599px) and (orientation: landscape) {
  .our-offer .offers-grid section h3, .our-offer .offers-grid section p {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid section h3, .our-offer .offers-grid section p {
    opacity: 1;
    transform: scale(1);
  }
}
.our-offer .offers-grid section h3 {
  display: flex;
  gap: 1rem;
  flex: 1 0 var(--main-col-width);
  font-family: "JetBrains Mono", monospace;
  font-size: 2.25rem;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: auto;
  /* position: sticky;
  top: calc(50vh - 5rem); */
}
.our-offer .offers-grid section h3 .title-icon {
  --size: 1.75rem;
  margin-top: 1rem;
}
@media (max-width: 1200px) {
  .our-offer .offers-grid section h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .our-offer .offers-grid section h3 {
    font-size: 1.75rem;
    flex: 1 1 auto;
    position: relative;
    top: auto;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid section h3 {
    font-size: 1.75rem;
    flex: 1 1 auto;
    position: relative;
    top: auto;
    margin-bottom: 0;
  }
}
.our-offer .offers-grid section p {
  flex: 1 1 calc(100% - var(--main-col-width));
  line-height: 1.75;
  position: relative;
  /* animation: fadeIn 1s forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 50%, exit; */
}
.our-offer .offers-grid section p::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 30%;
  border: 1px solid var(--accent-color);
  border-top: transparent;
}
@media (max-width: 1200px) {
  .our-offer .offers-grid section p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .our-offer .offers-grid section p {
    font-size: 1rem;
  }
}
.our-offer .offers-grid section:nth-child(even) {
  align-self: flex-end;
}
.our-offer .offers-grid section.element-visible h3, .our-offer .offers-grid section.element-visible p {
  opacity: 1;
  transform: scale(1);
}
.our-offer .component-test {
  display: flex;
  gap: 3rem;
  margin: 0 auto;
  padding: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
.our-offer .component-test figure {
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
}
.our-offer .component-test figure img {
  grid-column: 1;
  grid-row: 1;
}
.our-offer .component-test figure img:nth-child(2) {
  margin-top: calc(3rem + 0px);
}
.our-offer .component-test figure img:nth-child(3) {
  margin-top: calc(3rem + 96px);
}
.our-offer .component-test figure img:nth-child(4) {
  margin-top: calc(3rem + 192px);
}
.our-offer .component-test figure img:nth-child(5) {
  margin-top: calc(3rem + 288px);
}
.our-offer .component-test figure img:nth-child(6) {
  margin-top: calc(3rem + 384px);
}
.our-offer .component-test figure img:nth-child(2), .our-offer .component-test figure img:nth-child(3), .our-offer .component-test figure img:nth-child(4), .our-offer .component-test figure img:nth-child(5), .our-offer .component-test figure img:nth-child(6) {
  opacity: 1;
}

.about-us {
  position: relative;
}
.about-us .section-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/image_fx_9.jpg") no-repeat center top;
  background-size: 100% 100vh;
  background-attachment: fixed;
  opacity: 0.1;
  display: none;
}
.about-us .container {
  padding-bottom: 6rem;
}
@media (min-width: 993px) and (max-height: 720px) and (orientation: landscape) {
  .about-us .container {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-us .container {
    padding-bottom: 0;
  }
}
.about-us .intro {
  border-left: 0.25rem solid var(--accent-100);
  border-radius: 0.25rem 0 0 0.25rem;
  font-weight: normal;
  margin-bottom: 1.5em;
  padding: 0.5rem 1.5rem;
}
.about-us .cards-block {
  display: flex;
  gap: 2rem;
  min-width: 40rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) and (max-width: 992px) {
  .about-us .cards-block {
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .about-us .cards-block {
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
    margin-bottom: 0;
  }
}
.about-us .cards-block figure {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@supports (animation-timeline: view()) {
  .about-us .cards-block figure {
    animation: reveal 1s linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 45%, exit -48px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .about-us .cards-block figure {
    max-width: 40rem;
  }
}
@media (max-width: 767px) {
  .about-us .cards-block figure {
    flex-direction: column;
    max-width: 100vw;
  }
}
.about-us .cards-block img {
  border-radius: 0 2.5rem;
  min-width: 0;
  width: 60%;
  min-width: 15rem;
  transition: var(--transition-time) ease-in-out;
  transform-origin: center bottom;
  margin-left: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.about-us .cards-block figcaption {
  border-top: none;
  margin-top: -1.5rem;
  padding: 2.5rem 1.5rem 1.5rem;
}
.about-us .cards-block h4 {
  font-weight: bold;
}
.about-us .cards-block p {
  margin-bottom: 0;
}
.about-us .partners-block {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
}
.about-us .partners-block .main-link a svg {
  fill: white;
  width: auto;
  height: 4rem;
}
.about-us .partners-block .main-link h4 {
  font-weight: bold;
  margin-top: 1rem;
}
.about-us .partners-block .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-us .partners-block .links a {
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.about-us .partners-block .links a::after {
  content: "";
  display: inline-flex;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z" fill="%23FFC107" /></svg>') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  opacity: 0;
  transform: translateX(-50%);
  transition: var(--transition-time);
  position: relative;
  top: 0.25rem;
  left: 0.25rem;
}
.about-us .partners-block .links a:hover {
  color: var(--accent-100);
}
.about-us .partners-block .links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.side-panel {
  background: var(--bg-200);
  box-shadow: 0px -0.5rem 10px black;
  position: fixed;
  inset: 0 0 0 auto;
  width: 50vw;
  height: 100vh;
  min-width: 40rem;
  z-index: 99;
  transform: translateX(calc(100% + 2rem));
  transition: calc(var(--transition-time) * 2);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .side-panel {
    width: 100%;
    min-width: initial;
  }
}
.side-panel a {
  color: var(--accent-100);
  text-decoration: none;
}
.side-panel a:hover {
  color: var(--accent-100);
  text-decoration: underline;
}
.side-panel .close-panel {
  position: absolute;
  inset: 4rem 4rem auto auto;
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  z-index: 9;
}
@media (max-width: 767px) {
  .side-panel .close-panel {
    inset: 1.5rem 1.5rem auto auto;
  }
}
.side-panel .close-panel span {
  position: absolute;
  width: 2.5rem;
  height: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: var(--text-100);
}
.side-panel .close-panel span:first-child {
  width: 40px;
  transform: translateX(0) rotate(45deg);
}
.side-panel .close-panel span:last-child {
  width: 40px;
  transform: translateX(0) rotate(-45deg);
}
.side-panel section {
  color: var(--text-100);
  flex: 1;
  overflow: hidden auto;
  padding: 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .side-panel section {
    padding: 1.5rem;
  }
}
.side-panel section h2 {
  background: linear-gradient(to bottom, var(--bg-200) calc(100% - 1.75rem), transparent 100%);
  position: sticky;
  top: -4rem;
  margin-top: -4rem;
  margin-bottom: 0;
  padding-top: 4rem;
  padding-bottom: 2rem;
  z-index: 2;
}
.side-panel section::before {
  content: "";
  background: linear-gradient(to top, var(--bg-200) calc(100% - 2rem), transparent 100%);
  height: 4rem;
  position: fixed;
  inset: auto 0 0;
}
.side-panel.open {
  transform: translateX(0);
}

.title-icon {
  --size: 1.25rem;
  background: var(--accent-100);
  border-radius: 0 calc(var(--size) / 5 * 2);
  display: flex;
  flex-shrink: 0;
  width: var(--size);
  margin-bottom: auto;
  aspect-ratio: 4/3;
}

.side-navigation {
  position: fixed;
  inset: 50% 1.5rem auto auto;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-time);
}
.side-navigation.visible {
  opacity: 1;
  pointer-events: auto;
}
.side-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  scroll-target-group: auto;
}
.side-navigation ul li a {
  background: var(--bg-300);
  display: flex;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.side-navigation ul li a::before {
  content: "";
  background: var(--text-100);
  border-radius: 50%;
  margin: auto;
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: var(--transition-time);
}
.side-navigation ul li a::after {
  content: attr(data-section-name);
  background: var(--bg-300);
  border-radius: 0.25rem;
  color: var(--text-100);
  position: absolute;
  top: 50%;
  right: calc(100% + 0.5rem);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  padding: 0.25rem 1rem;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  transition: var(--transition-time);
  white-space: nowrap;
}
.side-navigation ul li a:hover::after {
  transform: translateY(-50%) scaleX(1);
}
.side-navigation ul li a.home-link {
  background: none;
  border: none;
  border-radius: 0;
}
.side-navigation ul li a.home-link svg path {
  fill: var(--text-100);
}
.side-navigation ul li a.home-link::after, .side-navigation ul li a.home-link::before {
  display: none;
}
@supports (scroll-target-group: auto) {
  .side-navigation ul li a:target-current::before {
    opacity: 1;
  }
}
@supports not (scroll-target-group: auto) {
  .side-navigation ul li.active a::before {
    opacity: 1;
  }
}
.side-navigation ul li.has-inner {
  border-radius: 1rem;
  display: flex;
  padding: 3px;
}
.side-navigation ul li.has-inner > a {
  display: none;
}
.side-navigation ul li.has-inner .inner-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: auto;
}
.side-navigation ul li.has-inner .inner-links a {
  width: 1rem;
  height: 1rem;
}
.side-navigation ul li.has-inner .inner-links a::before {
  width: 0.5rem;
  height: 0.5rem;
}
@supports not (scroll-target-group: auto) {
  .side-navigation ul li.has-inner.active .inner-links a::before {
    opacity: 0;
  }
  .side-navigation ul li.has-inner.active .inner-links a:first-child::before {
    opacity: 1;
  }
  .side-navigation ul li.has-inner a.active::before {
    opacity: 1;
  }
}/*# sourceMappingURL=styles.css.map */