:root {
  --font-family: 'Refinery 95 Bold', sans-serif;
  --second-family: 'Ubuntu', sans-serif;

  --accent-color: #fd8a30;
  --light-color: #ffffff;
  --text-color: #191626;
}

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

@font-face {
  font-family: 'Refinery 95 Bold';
  src: url('../fonts/Refinery-95-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'UbuntuBold';
  src: url('fonts/UbuntuBold.woff2') format('woff2');
}
@font-face {
  font-family: 'UbuntuRegular';
  src: url('fonts/UbuntuRegular.woff2') format('woff2');
}

@font-face {
  font-family: 'UbuntuLight';
  src: url('fonts/UbuntuLight.woff2') format('woff2');
}

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(--light-color);
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  user-select: 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: var(--light-color);

  &::-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: 1920px;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, -2.142rem + 7.07vw, 6.25rem);
}

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

.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 110px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-colors);
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 136%;
  color: var(--text-color);
}

.btn {
  padding: 24px 60px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 136%;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-color);
  border-radius: 14px;
  cursor: pointer;

  background: var(--accent-color);
  transition: background 0.3s ease;

  &:hover {
    background: rgba(253, 137, 48, 0.8);
  }
}

/* burger */
.burger {
  position: relative;
  border: none;
  padding: 0;
  width: 55px;
  height: 24px;
  color: var(--light-color);
  background-color: transparent;
  cursor: pointer;
  z-index: 12;
}

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

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

.burger::before {
  top: 0;
  left: 0;
  width: 100%;
  color: var(--accent-color);
}

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

.burger--active {
  color: var(--light-color);
}
.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);
}

/* burger */

@media screen and (max-width: 1140px) {
  .btn {
    padding: 18px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
  }
}
/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px; /* Ширина скроллбара */
}

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

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