* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: #48494C;
  font-family: "TT Norms Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  background-repeat: no-repeat;
}
body.fixed {
  overflow: hidden;
}

.container {
  max-width: 1320px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

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

p, ul, ol, article, section, a, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  font-family: "Unbounded";
  color: #181717;
  line-height: normal;
  font-size: 22px;
}

a {
  display: inline-block;
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

button {
  cursor: pointer;
  outline: none;
  background: none;
  border: 0;
  padding: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: inherit;
}

h1, .h1 {
  font-size: 64px;
  letter-spacing: -1.4px;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
    letter-spacing: -0.7px;
  }
}

h2, .h2 {
  font-size: 35px;
  letter-spacing: -0.92px;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 29px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 20px;
    letter-spacing: -0.46px;
  }
}

h3, .h3 {
  font-size: 30px;
  letter-spacing: -0.7px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.align-ic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-cb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 11px;
  padding: 8px 21px;
  border-radius: 18px;
  background: #181717;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 29px;
  border: 1px solid #181717;
  text-transform: uppercase;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.filled path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.filled:hover {
  background: #5061FF;
  color: #181717;
  border-color: #5061FF;
}
.filled:hover svg path {
  stroke: #181717;
}
.filled:active {
  background: transparent;
  color: #181717;
  border-color: #181717;
}
.filled:disabled {
  background: #CBD9E5;
  border-color: #CBD9E5;
  color: #FFF;
}
.filled.light {
  background: #5061FF;
  color: #181717;
  border-color: #5061FF;
}
.filled.reverse svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.blocks {
  gap: 20px;
}
.blocks .block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}
.blocks .block .title {
  color: #181717;
  font-family: "Unbounded";
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.44px;
}
@media (max-width: 767px) {
  .blocks .block .title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.tag {
  color: #181717;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.img {
  width: 70px;
  min-width: 70px;
  height: 70px;
  background-color: #EEF8FF;
  border-radius: 50%;
}

.line {
  color: #181717;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.line::before, .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background: #2E81FF;
}
.line::before {
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  background: #5061FF;
}
.line:hover::after {
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.news-page .news {
  margin-top: 84px;
}
@media (max-width: 767px) {
  .news-page .news {
    margin-top: 50px;
  }
}
.news-page.news-v2 .news {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .news-page.news-v2 .news {
    margin-top: 28px;
  }
  .news-page.news-v2 .news .blocks {
    margin-top: 28px;
  }
}
.news-page .load-more {
  margin: 54px auto 0;
  line-height: 28px;
  gap: 29px;
  padding-left: 61px;
}
@media (max-width: 767px) {
  .news-page .load-more {
    margin-top: 36px;
  }
}