@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* transition: background-color 0.3s ease, color 0.3s ease; */

html {
  scroll-behavior: smooth;

	max-width: 100%;
  font-size: 16px;
  font-family: "Inter Tight", serif !important;
  --new-color: rgb(78 82 86);

  /* цвета элементов */
  --color-background-primary: #ffffff;
  --color-background-gray: #292f3c;
  --color-background-page: #eef3f6;
  --color-background-accent-muted: rgba(141, 197, 250, 0.12);
  --color-background-overlay: #eef3f733;
  --color-background-overlay-inverse: rgba(238, 243, 247, 0.2);
  --color-background-accent-secondary: #e5f1ff;
	--color-background-tertiary: #e0e9ef;
  --color-background-stroke: rgba(141, 197, 250, 0.36);

  /* цвета шрифтов */
  --color-foreground-primary: #13161C;
  --color-foreground-secondary: #647186;
  --color-text-secondary: #5D77A2;
	--color-foreground-tertiary: #A6B4C5;
  --color-foreground-accent: #1762ba;
  --color-foreground-accent-hover: #1a71d5;
  --color-foreground-accent-blue: #2E43FF;

  /* размеры шрифтов */
  --font-size-6xl: 82px;
  --font-size-5xl: 65px;
  --font-size-4xl: 45px;
  --font-size-3xl: 36px;
  --font-size-2xl: 28px;
  --font-size-xl: 22px;
  --font-size-lg: 20px;
  --font-size-md: 18px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
}

body {
  margin: 0 auto;
  font-family: var(--font-main-family);
  overflow-x: hidden;
	max-width: 100vw;
  width: 100vw;
  touch-action: pan-y;
  min-width: 320px;
}

a {
  text-decoration: none !important;
}

p {
  margin: 0;
}

button, a {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

option {
  padding: 0 !important;
  margin: 0 !important;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
}

/* Общие настройки */
.cursor {
  cursor: pointer;
}

.nowrap {
  white-space: nowrap;
}

.block {
  width: 100%;
}

.block {
  max-width: 100%;
}

.block-main {
  display: flex;
  margin: 0 auto;
  max-width: 2560px;
}

/* модалка-затемнение */
.root-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 22, 28, 0.15);
  z-index: 100000;
  display: none;
}

/* Анимация */
.animation {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.img-arrow {
  display: none;
}
