@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Inter-Black.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* @link https://utopia.fyi/type/calculator?c=360,18,1.2,1240,20,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  /* Step -2: 12.5px → 12.8px */
  --step--2: clamp(0.7813rem, 0.7736rem + 0.0341vw, 0.8rem);
  /* Step -1: 15px → 16px */
  --step--1: clamp(0.9375rem, 0.9119rem + 0.1136vw, 1rem);
  /* Step 0: 18px → 20px */
  --step-0: clamp(1.125rem, 1.0739rem + 0.2273vw, 1.25rem);
  /* Step 1: 21.6px → 25px */
  --step-1: clamp(1.35rem, 1.2631rem + 0.3864vw, 1.5625rem);
  /* Step 2: 25.92px → 31.25px */
  --step-2: clamp(1.62rem, 1.4837rem + 0.6057vw, 1.9531rem);
  /* Step 3: 31.104px → 39.0625px */
  --step-3: clamp(1.944rem, 1.7405rem + 0.9044vw, 2.4414rem);
  /* Step 4: 37.3248px → 48.8281px */
  --step-4: clamp(2.3328rem, 2.0387rem + 1.3072vw, 3.0518rem);
  /* Step 5: 44.7898px → 61.0352px */
  --step-5: clamp(2.7994rem, 2.384rem + 1.8461vw, 3.8147rem);
}

body {
  font-family: "Arial Black", "Inter", "Roboto", sans-serif;
  font-size: var(--step-0);
  color: black;
}

h1, h2, h3, h4, h5, h6, .hero-heading {
  font-family: "Arial Black", "Inter", "Roboto", sans-serif;
}

.hero-heading {
  font-size: var(--step-5);
}

h1 {
  font-size: var(--step-4);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

h2 {
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

h3 {
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  h3 {
    font-size: var(--step--1);
  }
}
@media only screen and (orientation: landscape) and (max-width: 900px) {
  h3 {
    font-size: var(--step--1);
  }
}

h4 {
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.025em;
}

p {
  line-height: 1.6;
  letter-spacing: 0.03em;
}

small, caption {
  font-size: var(--step--1);
  line-height: 1.65;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  p {
    line-height: 1.2;
  }
}
.logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  mix-blend-mode: difference;
  filter: invert(1);
}
@media only screen and (orientation: landscape) and (max-width: 900px) {
  .logo {
    width: 40%;
  }
}

.slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  scroll-snap-align: start;
}

.slides {
  position: relative;
  height: 100%;
  transition: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.slide.active {
  z-index: 1;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.slide.active img {
  animation: zoomEffect 5s ease-out forwards;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide.active img {
    animation: none;
    transform: scale(1);
  }
}
p.menu {
  text-align: center;
  line-height: 0.75 !important;
  letter-spacing: 0.1em;
  position: absolute;
  z-index: 10;
  font-size: 4rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
p.menu-top {
  color: white;
  bottom: 1rem;
}
p.menu-bottom {
  position: relative;
  width: 100%;
  padding: 1rem 0 2rem;
}
p.menu span {
  display: block;
  transform: scaleX(2) scaleY(0.5);
}
@media (max-width: 900px) {
  p.menu {
    font-size: 1.5rem;
  }
  p.menu-top {
    bottom: 1rem;
  }
  p.menu-bottom {
    padding: 1rem 0 0.7rem;
  }
}
@media only screen and (orientation: landscape) and (max-width: 900px) {
  p.menu {
    font-size: 1.5rem;
  }
  p.menu-top {
    bottom: 1rem;
  }
  p.menu-bottom {
    padding: 1rem 0 0.7rem;
  }
}
@media (max-height: 920px) {
  p.menu {
    font-size: 2rem;
  }
  p.menu-bottom {
    padding: 0.5rem 0 0.25rem;
  }
}

.content {
  position: relative;
  max-width: 1200px;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.content .info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem;
}
.content .contact-info {
  font-size: var(--step-2);
  text-align: center;
  padding: clamp(0.5rem, 2vh, 2rem) 0;
}
.content .contact-info p {
  line-height: 1.1;
}
.content .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  gap: 16px;
}
.content .company-info .first-col,
.content .company-info .second-col {
  display: contents;
}
@media (max-width: 900px) {
  .content .contact-info {
    padding: 1rem 0;
  }
  .content .company-info {
    padding: 0.5rem 0;
    gap: 14px;
  }
}
@media (max-height: 820px) {
  .content .contact-info {
    font-size: var(--step-1);
    padding: 0.25rem 0;
  }
  .content .company-info {
    padding: 0.25rem 0;
    gap: 10px;
  }
  .content .company-info p {
    font-size: var(--step--2);
  }
  .content h3 {
    font-size: var(--step--2);
  }
  .content p {
    line-height: 1.15;
  }
}
@media only screen and (orientation: landscape) and (max-width: 900px) {
  .content .contact-info {
    font-size: 1rem;
    padding: 0.5rem 0;
    flex: 0 0 auto;
  }
  .content .company-info {
    padding: 0;
    gap: 4px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
  }
}

.flet-container {
  height: 100vh;
  height: 100dvh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-color: #F4F4F4;
}

/*# sourceMappingURL=main.css.map */
