@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Chakra+Petch:var(--body-3-font-weight),700,600,var(--button-font-weight),var(--h1-font-weight),var(--caption-font-weight),var(--h2-font-weight),var(--h5-font-weight),var(--h3-font-weight)|Barlow:var(--body-font-weight),400,var(--body-2-font-weight),var(--label-font-weight)");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  min-height: 100%;
}
body {
  font-family: var(--body-font-family);
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}


* {
    transition: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

.header__burger {
  position: relative;
  z-index: 20;
  display: none;
  width: 32px;
  height: 24px;
  cursor: pointer;
  @media (max-width: 1200px) {
    display: block;
  }
  span {
    background-color: #000;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 4px;
    transition: 0.25s;
    cursor: pointer;
    &:nth-child(2) {
      top: 10px;
    }
    &:nth-child(3) {
      top: 20px;
    }
    &:nth-child(4) {
      top: 30px;
    }
    &.rotate1 {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
    }
    &.rotate2 {
      top: 10px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
    }
    &.none {
      display: none;
    }
  }
}