html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(64px + 20px);
}

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
}

i {
  font-style: normal;
}

button,
input,
textarea {
  display: block;
  border: none;
  background: none;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  padding: 0;
  margin: 0;
  outline: none;
  font-weight: inherit;
  line-height: inherit;
}
button,
[role="button"],
[data-fancybox] {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}
input {
  width: 100%;

  &[hidden] {
    display: none;
  }
}

body {
  font-weight: 400;
  line-height: 1;
  color: #21201f;
  overflow-x: hidden;
}

.block {
}

.miniblock {
  max-width: 1508px;
  margin-inline: auto;
}

.title {
  font-family: oswald;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #21201f;

  display: flex;
  align-items: center;

  & i {
    color: #e84e26;
    display: contents;
  }

  &::before {
    content: "";
    margin-right: 0.5em;
    width: 6px;
    height: 1.1em;
    background: #e84e26;
    display: block;
  }
}
@media (width < 768px) {
  .title {
    font-size: 32px;
  }
}
