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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
body {
  font-family: var(--font-family-base);
  background-color: var(--color-light);
  font-size: var(--font-size-base);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  font-size: 22px;
}

:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-grey: #808080;
  --font-family-base: "Montserrat", sans-serif;
  --transition-duration: 0.2s;
  --font-size-base: 16px;
  --laptop: 1440.98px;
  --tablet: 1023.98px;
  --mobile: 767.98px;
  --mobile-small: 479.98px;
}

.main {
  padding: 0 80px;
}
@media (max-width: 767.98px) {
  .main {
    padding: 0 15px;
  }
}
@media (max-width: 1023.98px) {
  .main {
    padding-top: 80px;
  }
}
.main .main-content {
  border-top: 1px solid var(--color-grey);
  min-height: calc(100vh - 140px);
  display: flex;
  gap: 60px;
  padding: 40px;
}
@media (max-width: 1023.98px) {
  .main .main-content {
    border-top: none;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.main .main-content .sidebar {
  flex: 0 0 380px;
  position: sticky;
  top: 40px;
  height: fit-content;
  background-color: var(--color-light);
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar {
    flex: 0 0 auto;
    width: 100%;
    top: 74px;
  }
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.main .main-content .sidebar .sidebar-nav ul {
  list-style: none;
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav ul {
    padding: 8px 0;
    margin: 0;
    display: flex;
    flex-direction: row;
  }
}
.main .main-content .sidebar .sidebar-nav li {
  margin-bottom: 12px;
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav li {
    margin-bottom: 0;
    white-space: nowrap;
  }
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav li:first-child a {
    padding-left: 0;
  }
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav li:last-child a {
    padding-right: 0;
  }
}
.main .main-content .sidebar .sidebar-nav a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.6s ease-in-out;
  margin-left: -2px;
  border-left: 2px solid transparent;
}
@media (max-width: 1023.98px) {
  .main .main-content .sidebar .sidebar-nav a {
    border-bottom: 2px solid transparent;
    border-left: none;
    margin-left: 0;
  }
}
.main .main-content .sidebar .sidebar-nav a:hover,
.main .main-content .sidebar .sidebar-nav a.active {
  font-weight: 500;
}
.main .main-content .content {
  flex: 1;
}
.main .main-content .content div[id^=list-item-] {
  margin-bottom: 40px;
}
@media (max-width: 1023.98px) {
  .main .main-content .content div[id^=list-item-] {
    scroll-margin-top: 140px;
  }
}

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