@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  line-height: 1;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

/* Удаляем стандартную стилизацию для всех ul и ol */
ul,
ol {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  -o-object-position: center;
     object-position: center;
}
img[src$=".png"], img[src$=".svg"] {
  -o-object-fit: contain;
     object-fit: contain;
}
img[src$=".jpg"], img[src$=".jpeg"] {
  -o-object-fit: cover;
     object-fit: cover;
}

/* Указываем понятную периодичность в потоке данных у article */
article > * + * {
  margin-top: 1em;
}

/* Remove outline on the forms and links */
:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Указывающий курсор над теми элементами, которые можно щелкнуть */
a[href],
input[type=submit],
input[type=image],
label[for],
select,
button,
.pointer {
  cursor: pointer;
}

/* стандартные кнопки */
input[type=submit],
button,
.btn {
  outline: none;
  border: 1px solid #000;
  border-radius: 2px;
  background: #ddd;
  text-decoration: none;
  color: initial;
  padding: 1px 5px;
  display: inline-block;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Отобразите на распечатанной веб-странице URL’ы */
@media print {
  a:after {
    content: " [" attr(href) "] ";
  }
}
/* типографика по умолчанию */
a {
  color: inherit;
  text-decoration: none;
}

a:not([class]) {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}/*# sourceMappingURL=reset.css.map */