:root {
  --font-family: 'Montserrat', sans-serif;
  --second-family: 'Unbounded', sans-serif;

  --accent-color: #cdfc18;
  --light-color: #ffffff;
  --text-color: #8e8d91;
  --dark-color: #000000;
}

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

html {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  min-width: 390px;
  scroll-behavior: smooth;
}

.page-body {
  margin: 0;
  min-width: 390px;
  min-height: 100%;
  font-size: 16px;
  overflow-y: auto;
  background: var(--dark-color);
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  user-select: none !important;
  pointer-events: none !important;
}
b {
  font-weight: bold;
}

a {
  text-decoration: none;
}
.dis-scroll {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  &::-webkit-search-decoration,
  &::-webkit-search-cancel-button,
  &::-webkit-search-results-button,
  &::-webkit-search-results-decoration {
    display: none;
  }
}

.flex {
  display: flex;
  align-items: center;
}
.container {
  max-width: 1390px;
  margin-inline: auto;
  padding: 0 20px;
}

.color-text {
  color: var(--accent-color);
}

.title {
  font-family: var(--second-family);
  font-weight: 400;
  /* font-size: 48px; */
  font-size: clamp(1.5rem, -1.2rem + 9.6vw, 3rem);
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--light-color);
}

.title-decor {
  position: absolute;
  top: 0;
  left: 0;

  font-family: var(--second-family);
  font-weight: 900;
  /* font-size: 190px; */
  font-size: clamp(3.75rem, -1.125rem + 17.33vw, 11.875rem);
  letter-spacing: -0.03em;

  color: var(--dark-color);
  text-shadow: 1px 1px 0 #cdfc18, 0px 0px 0 #cdfc18, -1px 0px 0 #cdfc18,
    0px -1px 0 #cdfc18;
  opacity: 0.07;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--text-color);
}

.btn {
  width: 290px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 61%;

  border-radius: 5px;
  cursor: pointer;
}
.btn a {
  color: inherit;
}
.btn-color {
  color: #111;

  border: 1px solid #000;

  box-shadow: 5px 5px 0 0 #9bbe15, -5px -5px 0 0 #8fad1b;
  background: #cdfc18;
  transition: all 0.3s ease-in-out;
}
.btn-color:hover {
  box-shadow: -5px -5px 0 0 #9bbe15, 5px 5px 0 0 #8fad1b;
}
.btn-dark {
  stroke: var(--accent-color);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  background: transparent;
  transition: color 0.3s ease-in-out, stroke 0.3s ease-in-out,
    background 0.3s ease-in-out;
}
.btn-dark:hover {
  color: var(--dark-color);

  stroke: var(--dark-color);
  background: var(--accent-color);
}

/* burger */
.burger {
  margin-left: 20px;
  display: none;
  position: relative;
  border: none;
  padding: 0;
  width: 34px;
  height: 24px;
  color: var(--accent-color);
  background-color: transparent;
  cursor: pointer;
  z-index: 9;
}

.burger::before,
.burger::after {
  content: '';
  position: absolute;

  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger::before {
  top: 0;
  left: 0;
  width: 50%;
}

.burger::after {
  top: calc(100% - 3px);
  right: 0;
  width: 50%;
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--light-color);
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

.burger--active::before {
  top: 50%;
  width: 100%;
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active::after {
  top: 50%;
  width: 100%;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active .burger__line {
  color: var(--accent-color);
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
.line {
  width: 100%;
  border-bottom: 1px solid var(--accent-color);
}
.dot-decor {
  border-radius: 100px;
  width: 13px;
  height: 7px;
  background-color: var(--accent-color);
}

.break-line {
  gap: 50px;
}
.break-line img {
  width: 100%;
  min-width: 101px;
  max-width: 140px;
}

.break-line__dots {
  width: 100%;
  height: 1px;
}
.break-line__dark {
  border: 1px dashed #353535;
}
.break-line__green {
  position: relative;
  border: 1px dashed var(--accent-color);
}
.break-line__green::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  pointer-events: none;
}
.break-line--second .break-line__green::after {
  left: -4px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
/* burger */

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 6px; /* Ширина скроллбара */
}

/* Ползунок скроллбара */
::-webkit-scrollbar-thumb {
  background: var(--accent-color); /* Цвет ползунка */
  border-radius: 5px; /* Закругленные углы */
}

/* Трек скроллбара */
::-webkit-scrollbar-track {
  background: var(--dark-color); /* Цвет трека */
}
