/* inter-regular - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url(',/fonts/inter-v19-latin_latin-ext-regular.woff2') format('woff2');
}
/* inter-italic - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url(',/fonts/inter-v19-latin_latin-ext-italic.woff2') format('woff2');
}
/* inter-600 - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url(',/fonts/inter-v19-latin_latin-ext-600.woff2') format('woff2');
}
/* inter-600italic - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  src: url(',/fonts/inter-v19-latin_latin-ext-600italic.woff2') format('woff2');
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url(',/fonts/inter-v19-latin_latin-ext-700.woff2') format('woff2');
}
/* inter-700italic - latin_latin-ext */
@font-face {
  font-display: fallback;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url(',/fonts/inter-v19-latin_latin-ext-700italic.woff2') format('woff2');
}


:root {
	font-size: 62.5%;
	line-height: 1.5;

  --padding-10to40: clamp(10px, calc(2.9vw - 8px), 40px);
  --padding-20to40: clamp(20px, calc(1.9vw + 7px), 40px);
  --padding-20to50: clamp(20px, calc(2.9vw + 1px), 50px);
	--padding-40to80: clamp(40px, calc(3.9vw + 15.1px), 80px);
  --padding-80to120: clamp(80px, calc(5.0vw + 4.8rem), 120px);
	--color-primary: #F8982C;
	--color-text: #231F20;
}
* {
  box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color-text);
	overflow-x: hidden;
	overflow-y: scroll;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
	width: 100%;
  min-height: 100vh;
	overflow: hidden;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, calc(2.3vw + 2.1rem), 6.5rem);
}

.clip {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.start {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: var(--padding-80to120) 10px;
}
.start__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.start__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  padding: var(--padding-20to50) var(--padding-10to40);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
  line-height: 1;
}
.start__content__logo {
  display: block;
  width: 100%;
  max-width: 400px;
}

.info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: var(--padding-20to50) 10px;

}
.info__item {
}
.info__item__title {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}
.info__item__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  transform: translateY(50%);
}
.info__item__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

@media screen and (min-width: 640px) {
  .info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .info {
    grid-template-columns: repeat(5, 1fr);
  }
  .info__item--big {
    grid-column: span 2;
  }
}

.reveal-zoomin {
  opacity: 0;
  animation: reveal-zoomin 1s ease-in-out var(--reveal-delay) forwards;
}
@keyframes reveal-zoomin {
  from {
		opacity: 0;
    transform: scale(0);
  }
	to {
		opacity: 1;
    transform: scale(1);
	}
}

.reveal-top {
  opacity: 0;
  animation: reveal-top 500ms ease-in-out var(--reveal-delay) forwards;
}
@keyframes reveal-top {
  from {
		opacity: 0;
    transform: translateY(-100%);
  }
	to {
		opacity: 1;
    transform: translateY(0);
	}
}

.reveal-bottom {
  opacity: 0;
  animation: reveal-bottom 500ms ease-in-out var(--reveal-delay) forwards;
}
@keyframes reveal-bottom {
  from {
		opacity: 0;
    transform: translateY(100%);
  }
	to {
		opacity: 1;
    transform: translateY(0);
	}
}
