@import './constants.css';
@import './header.css';
@import './media/header-mobile.css';
@import './resources-page.css';
@import './media/resources-page-mobile.css';
@import './footer.css';
@import './media/footer-mobile.css';
@import './summaries.css';
@import './media/summaries-mobile.css';
@import './category-page.css';
@import './media/category-page-modile.css';
@import './video-page.css';
@import './media/video-page-mobile.css';

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

*::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #cfe0e5;
}

:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 10px;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/* ----------------------- */

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v13-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  width: 100vw;
  margin: 0 auto;
  background-color: var(--color--white);
  font-family: Inter, sans-serif;
  font-size: var(--font-size--body);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: var(--color--darck);
}

h1 {
  font-size: var(--font-size--h1);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.112rem;
}

h2 {
  font-size: var(--font-size--h2);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.096rem;
}

h3 {
  font-size: var(--font-size--h3);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.072rem;
  text-transform: capitalize;
}

h4 {
  font-size: var(--font-size--h4);
  font-weight: 600;
  line-height: 130%;
}

h5 {
  font-size: var(--font-size--h5);
  font-weight: 600;
  line-height: 130%;
}

.text-link {

  color: #5833af!important;
  text-decoration: underline!important;

}

.hidden {
  display: none;
}

.clickable:hover {
  cursor: pointer;
}
