@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;
}

.page-section .text p {
  border: 1px solid #e8e8e8;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 5px -1px rgba(0, 126, 158, 0.3);
  margin-bottom: 25px !important;
}

.page-section .page p {
  word-break: unset;
  margin-bottom: 10px;
}

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

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

.page-section .page p a {
  color: var(--main-color);
  font-family: regular;
  transition: var(--transition);
  text-decoration: underline;
}

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

.page-section .page img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

