@font-face {
  font-family: regular;
  src: url("/public/fonts/OpenSans-Regular-webfont.woff2");
}

@font-face {
  font-family: light;
  src: url("/public/fonts/Nunito-Light-webfont.woff2");
}

@font-face {
  font-family: bold;
  src: url("/public/fonts/OpenSans-Bold-webfont.woff2");
}

@font-face {
  font-family: second-m;
  src: url("/public/fonts/RobotoSlab-Medium-webfont.woff2");
}

@font-face {
  font-family: second-b;
  src: url("/public/fonts/RobotoSlab-Bold-webfont.woff2");
}

:root {
  --main-color: #358aff;
  --main-color-100: #60a3ff;
  --black-color: #303030;
  --gray-color-100: #999;
  --gray-color-300: #f7f7f7;
  --transition: all .3s;
  --regular: regular;
  --second-m: second-m;
}

.article-content .page .date {
  font-family: bold;
  color: #434343;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 25px;
}

.article-content .page p:last-child {
  margin-bottom: 0;
}

.article-content .page p strong {
  font-family: bold;
}

.article-content .page p a {
  color: #2887ef;
  font-family: var(--semibold);
  transition: all 350ms ease-out;
  text-decoration:underline;
}

.article-content .page p a:hover {
  color: #434343;
}

.article-content .page img {
  max-width: 100%;
  margin-bottom: 20px;
}

.article-content .page ul {
  margin: 25px 0;
}

.article-content .page ul li {
  font-size: 14px;
  line-height: 22px;
  font-family: regular;
  color: #434343;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.article-content .page ul li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2887ef;
}

.article-content .page ol {
  margin: 25px 0;
}

.article-content .page ol li {
  font-size: 14px;
  line-height: 22px;
  font-family: regular;
  color: #434343;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.article-content .page h1 {
  font-family: bold;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 15px;
  color: #434343;
}

.article-content .page h2 {
  font-family: bold;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
  color: #434343;
}

.article-content .page h3 {
  font-family: bold;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #434343;
}

