* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  float: left;
}

html {
  scroll-behavior: smooth;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

span {
  display: inline-block;
}

ul, ol {
  position: relative;
}
ul li, ol li {
  list-style-type: none;
  position: relative;
  float: left;
}
ul li:last-child, ol li:last-child {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  background-color: transparent;
  cursor: pointer;
}

.full {
  position: relative;
  float: left;
  width: 100%;
}

.full_h {
  height: 100%;
}

.pos_rel {
  position: relative;
}

.pos_abs {
  position: absolute;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.float_none {
  float: none;
}

.clearfix {
  clear: both;
}

.center {
  position: relative;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.align_start {
  align-items: flex-start;
}

.justify_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.direction_column {
  flex-direction: column;
}

.flex_wrap {
  flex-wrap: wrap;
}

.has_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.fit-cover {
  object-fit: cover;
}

.fit-contain {
  object-fit: contain;
}

del {
  text-decoration-color: #d00000;
}

strong {
  font-weight: bold;
}

/*# sourceMappingURL=reset.css.map */
