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

html {
  margin: 0;
  padding: 0;
  background: #d0d0d0;
}

body {
  margin: 0;
  padding: 0;
  background: #d0d0d0;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
   overflow-x: hidden;

}

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

button {
  font: inherit;
}

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

.page {
  min-height: 100vh;
  padding: 104px 20px 48px;
}

.page-basic {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.content-block {
  width: 100%;
  max-width: 1200px;
}

.section-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-text {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 640px) {
  .page {
    padding: 92px 16px 36px;
  }

  .section-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .section-text {
    font-size: 14px;
  }

  
}


.page-enter-ready {
  opacity: 0;
  transform: translateY(280px);
}

.page-enter-ready.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.45s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}