html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  margin-bottom: 0;
  list-style: none;
}

blockquote, q {
  quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


button {
  border: none;
  font: inherit;
  cursor: pointer;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  &:focus {
    outline: none;
  }
}


b, strong {
  font-weight: bold;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5em;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  &:focus{
    outline: none;
  }
}

em {
  font-style: italic;
}

small {
  font-size: 0.85rem;
}

html {
  height: 100%;
  width: 100%;
  font-size: calc(1rem / 16);
  scroll-behavior: smooth;
  background-color: #fff;
}
body {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: #fff;
  max-width:1920px;

}
@media (min-width: 1366px){
  body{
    scrollbar-gutter: stable both-edges;
  }

  body::-webkit-scrollbar {
    width: 16rem;
  }

  body::-webkit-scrollbar-thumb {
    background-color: rgba(128,128,128,0.5);
    background-clip: content-box;
    cursor: grab;
    border: 5px solid transparent;
    border-radius: 10rem;
  }
  body::-webkit-scrollbar-track {
    position: absolute;
    right: -3rem;
    top: -50rem;
    background: transparent;
  }
}
@media (min-width: 1930px){
  body{
    filter: drop-shadow(0 0 100rem hsla(0,0%,0%,0.15));
  }
}

input{
  outline: none;
  font: inherit;
  color: inherit;
}
textarea{
  font: inherit;
  color: inherit;
}

img{
  display: block;
}

hr{
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  color: #ededed;
}
