@charset "UTF-8";
:root {
  --color000: #333333;
  --color001: #ffffff;
  --color002: #efeae6;
  --color003: #191612;
  --color004: #8aaf90;
  --color005: #8d8d8d;
  --color007: #7c7c7c;
  --color008: #ffd500;
  --color009: #060606;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  cursor: url("/img/cursor.png"), auto;
}

/* Курсор при наведении на интерактивные элементы */
a, button, input, textarea, select, option, .item img, .popup-close img, .fix_phone img, .logo img {
  cursor: url("/img/cursor_pointer.png"), pointer;
}

/* Дополнительные стили для разных состояний */
a:hover, button:hover, input:hover {
  cursor: url("/img/cursor_pointer.png"), pointer;
}

/* Курсор для input текстового типа */
input[type=text], input[type=email], textarea {
  cursor: url("/img/cursor_pointer.png"), text;
}

html {
  scroll-behavior: smooth;
  background: var(--color003);
}

body {
  overflow: auto;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}

a {
  text-decoration: none;
}

button {
  cursor: url("/img/cursor_pointer.png"), pointer;
  border: none;
}

.button {
  background: var(--color004);
  color: var(--color001);
  padding: 20px 70px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.button:hover, .button.invers {
  background: var(--color001);
  color: var(--color004);
}

.button.transparent {
  border: 1px solid var(--color001);
  background: transparent;
}
.button.transparent:hover {
  background: var(--color001);
}

li {
  text-decoration: none;
  list-style: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
  outline: none !important;
}

input {
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--color007);
  width: 100%;
  border: none;
}

.h1 {
  font-family: "BalkaraFreeCondensed", sans-serif;
  font-size: 100px;
  line-height: 120%;
  font-weight: 400;
  color: var(--color001);
}

.h2 {
  font-family: "BalkaraFreeCondensed", sans-serif;
  font-size: 45px;
  line-height: 120%;
  font-weight: 400;
  color: var(--color001);
}

.black_h2 {
  color: var(--color000);
}

.h3 {
  font-family: "BalkaraFreeCondensed", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
  color: var(--color001);
}

.black_h3 {
  color: var(--color000);
}

.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: justify;
  color: var(--color001);
}
@media screen and (max-width: 820px) {
  .text {
    text-align: left;
  }
}

.black_text {
  color: var(--color000);
}

.small_text {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--color001);
}

.link {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--color004);
}

summary::marker {
  content: "";
}

details summary {
  cursor: url("/img/cursor_pointer.png"), pointer;
  transition: 0.3s ease-out;
}
details summary::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color007);
  border-bottom: 2px solid var(--color007);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

.bread_crumbs, .bread_crumbs a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color001);
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1420px) {
  .container {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .h1 {
    font-size: 80px;
  }
  .h2 {
    font-size: 38px;
  }
  .h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .h1 {
    font-size: 60px;
  }
  .h2 {
    font-size: 32px;
  }
  .h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1020px) {
  .container {
    width: 800px;
  }
}
@media screen and (max-width: 820px) {
  .container {
    width: 600px;
  }
}
@media screen and (max-width: 620px) {
  .container {
    width: 350px;
  }
  .h1 {
    font-size: 40px;
  }
  .h2 {
    font-size: 30px;
  }
  .h3 {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */