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

body {
  font-family: "Figtree";
}

b, strong {
  font-weight: 600;
}

img {
  display: block;
  width: 100%;
}

.website-banner {
  display: none;
}

.container {
  max-width: 1208px;
  padding: 0 40px;
  margin: 0 auto;
}

.popup-banner {
  position: fixed;
  inset: 0;
  background: #0300134D;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.popup-banner.active {
  opacity: 1;
  pointer-events: painted;
  transition: 0.3s;
}
.popup-banner__body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-banner__area {
  position: absolute;
  inset: 0;
}
.popup-banner__content {
  margin: 0 16px;
  max-width: 1128px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
}
.popup-banner__content-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: center/contain no-repeat url("/resources/blogArticles/banners/close-icon.svg");
  cursor: pointer;
  border: none;
  transition: 0.3s;
}
.popup-banner__content-close:hover {
  rotate: 90deg;
  transition: 0.3s;
}
.popup-banner__content-picture {
  position: relative;
  display: block;
  max-width: 528px;
  width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 40px;
}
.popup-banner__content-img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  object-fit: cover;
}
.popup-banner__info-title {
  font: 600 48px/60px "Jokker";
  color: #060028;
  margin: 0 0 20px;
  max-width: 425px;
}
.popup-banner__info-text {
  font: 400 20px/32px "Figtree";
  color: #060028;
  margin: 0 0 36px;
  max-width: 410px;
}
.popup-banner__info-btn {
  padding: 16px 40px;
  border-radius: 100px;
  background: #060028;
  text-align: center;
  font: 600 16px/24px "Figtree";
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.popup-banner__info-btn:hover {
  background: #5273ef;
  transition: 0.3s;
}

.sidebar-banner {
  position: fixed;
  left: -100%;
  bottom: 40px;
  z-index: 10001;
  border-radius: 16px;
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.7s ease-out;
}
.sidebar-banner.active {
  opacity: 1;
  pointer-events: painted;
  left: 16px;
  transition: 0.7s ease-out;
}
.sidebar-banner__content-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat url("/resources/blogArticles/banners/close-icon.svg");
  cursor: pointer;
  border: none;
  z-index: 1;
  transition: 0.3s;
}
.sidebar-banner__content-close:hover {
  rotate: 90deg;
  transition: 0.3s;
}
.sidebar-banner__content-picture {
  width: 100%;
  height: 280px;
  position: relative;
}
.sidebar-banner__content-img {
  position: absolute;
  width: 100%;
  object-fit: cover;
}
.sidebar-banner__info {
  padding: 24px 16px 16px;
  background: #fff;
}
.sidebar-banner__info-title {
  font: 600 28px/35px "Jokker";
  color: #060028;
  margin: 0 0 8px;
}
.sidebar-banner__info-text {
  font: 400 16px/26px "Figtree";
  color: #060028;
  margin: 0 0 20px;
}
.sidebar-banner__info-btn {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  background: #060028;
  cursor: pointer;
  font: 600 16px/24px "Figtree";
  transition: 0.3s;
}
.sidebar-banner__info-btn:hover {
  background: #5273ef;
  transition: 0.3s;
}

.article__content a.intext-banner {
  display: block;
  width: 100%;
  margin-top: 32px;
}
.article__content a.intext-banner img {
  margin: 0;
  pointer-events: none;
}

.article {
  position: relative;
  background: #fff;
}
.article__inner {
  padding-bottom: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.article__progressbar {
  position: sticky;
  top: 64px;
  left: 0;
  width: 100%;
  height: 8px;
  z-index: 5;
  overflow: hidden;
}
.article__progressbar span {
  width: 0;
  height: 100%;
  background: #5273EF;
  position: absolute;
  top: 0;
  left: 0;
}
.article__content {
  max-width: 672px;
  width: 100%;
  margin-right: 48px;
  position: relative;
}
.article__content img {
  width: 100%;
  height: auto;
  margin: 32px 0 0;
}
.article__content p:first-child:not([class]) {
  margin: 0;
}
.article__content p.description {
  color: #2C2C2C;
  font: 500 24px/38px "Figtree";
  margin: 0;
  max-width: 100%;
}
.article__content p, .article__content ul li, .article__content ol li, .article__content span, .article__content div {
  font: 400 18px/30px "Figtree";
}
.article__content p {
  color: #2C2C2C;
  margin: 16px 0 0;
}
.article__content p.tweet {
  padding: 32px 40px;
  border: 2px solid #5273EF;
  border-radius: 12px;
  background: #fff;
  color: #2C2C2C;
  font: 400 24px/38px "Figtree";
  position: relative;
}
.article__content p.tweet::before {
  content: "Click to tweet";
  position: absolute;
  right: 11px;
  bottom: 8px;
  font: 600 16px/18px "Figtree";
  color: #858C99;
  padding-right: 38px;
  background: 100% 50%/24px 24px no-repeat url("/resources/img/blog/tweet-icon.svg");
}
.article__content p.in-border {
  border: 2px solid #060028;
  border-radius: 12px;
  padding: 12px 18px;
}
.article__content .in-border-dashed {
  margin-top: 32px;
  padding: 32px 40px;
  background: #F9F5FF;
  border: 3px dashed #B682F8;
  border-radius: 12px;
}
.article__content .in-border-dashed:first-of-type {
  margin: 0 0 32px;
}
.article__content .in-border-dashed strong, .article__content .in-border-dashed b {
  font-weight: 600;
}
.article__content .in-border-dashed strong.tldr, .article__content .in-border-dashed b.tldr {
  display: block;
  font-size: 24px;
}
.article__content .in-border-dashed p {
  margin-top: 16px;
}
.article__content .in-border-dashed p:first-child {
  margin: 0;
}
.article__content .in-border-dashed ul, .article__content .in-border-dashed ol {
  margin-top: 16px;
}
.article__content .in-border-dashed ul li b, .article__content .in-border-dashed ol li b {
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}
.article__content .in-border-dashed ul li::before, .article__content .in-border-dashed ol li::before {
  top: 9px;
}
.article__content h2 {
  font: 600 32px/44px "Figtree";
  color: #060028;
  margin: 48px 0 0;
}
.article__content h3 {
  font: 600 24px/26px "Figtree";
  color: #060028;
  margin: 34px 0 0;
}
.article__content h4 {
  font: 600 20px/24px "Figtree";
  color: #060028;
  margin: 24px 0 0;
}
.article__content a {
  display: inline;
  color: #5273ef !important;
  transition: none;
}
.article__content a:hover {
  color: #5273EF !important;
  border-bottom: 2px solid #5273EF;
  transition: none;
}
.article__content a:visited {
  color: #b682f8 !important;
  transition: none;
}
.article__content a:visited:hover {
  color: #b682f8 !important;
  border-bottom: 2px solid #b682f8;
}
.article__content a:has(img):hover, .article__content a:has(img):visited:hover {
  border: none;
}
.article__content ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.article__content ul li {
  color: #2C2D31;
  margin: 0 0 16px;
  padding: 0 0 0 36px;
  position: relative;
  background: none;
}
.article__content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 10px;
  background: #5273EF;
  border-radius: 50%;
}
.article__content ul li:last-child {
  margin: 0;
}
.article__content ul li b, .article__content ul li strong {
  font-weight: 600;
}
.article__content ul li > ul {
  margin-top: 16px;
}
.article__content ul li > ul li {
  margin-bottom: 8px;
}
.article__content ul li > ul li::before {
  border: 2px solid #5273ef;
  background: none;
}
.article__content ol {
  margin: 32px 0 0;
  padding: 0 0 0 30px;
  list-style: initial;
}
.article__content ol li {
  padding: 0 0 0 10px;
  margin: 0 0 16px;
  list-style: decimal;
}
.article__content ol li b, .article__content ol li strong {
  font-weight: 600;
}
.article__content ol li:last-child {
  margin: 0;
}
.article__content ol li > ul li {
  list-style: none;
  padding-left: 20px;
}
.article__content ol li > ul li::before {
  border: 2px solid #5273ef;
  background: none;
  left: 0;
}
.article__content .table {
  margin: 50px auto;
  overflow: auto;
  box-shadow: 5px 5px 38px rgba(130, 141, 167, 0.1);
  border-radius: 10px;
}
.article__content .table::-webkit-scrollbar {
  display: none;
}
.article__content .table table {
  display: block;
  min-width: 450px;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  border-collapse: collapse;
  background-color: #fff;
}
.article__content .table table thead tr {
  border-radius: 10px 10px 0 0;
  box-shadow: 5px 5px 38px rgba(130, 141, 167, 0.1);
}
.article__content .table table thead tr th {
  padding: 10px 16px;
  background: #5273EF;
  color: #fff;
  width: 20%;
  text-align: left;
  vertical-align: middle;
  font: 600 16px/20px "Jokker";
}
.article__content .table table tbody tr:nth-child(2n) {
  background: #F2F4F9;
}
.article__content .table table tbody tr:last-child {
  border-bottom: none;
}
.article__content .table table tr:last-child {
  border-radius: 0 0 10px 10px;
}
.article__content .table table tr td {
  padding: 13px 16px;
  color: #060028;
  font: 400 14px/18px "Figtree";
}
.article__content .table table tr td button {
  padding: 0;
  color: #5273EF;
  font: 600 12px/14px "Figtree";
  cursor: pointer;
}
.article__content .table table tr td button:hover {
  text-decoration: underline;
}
.article__aside {
  max-width: 384px;
  width: 100%;
  height: 100%;
  position: sticky;
  top: 80px;
}
.article__aside .contents {
  margin-bottom: 48px;
}
.article__aside .contents-title {
  margin: 0 0 16px;
  font: 600 20px/1 "Figtree";
  color: #060028;
  cursor: pointer;
}
.article__aside ol.navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  transition: all 0.3s ease-in;
  overflow: auto;
}
.article__aside ol.navigation::-webkit-scrollbar {
  display: none;
}
.article__aside ol.navigation li, .article__aside ol.navigation button {
  font: 500 16px/1.5 "Figtree";
}
.article__aside ol.navigation li button {
  background: none;
  padding: 0;
  border: none;
  width: 100%;
  cursor: pointer;
  color: #858C99;
  text-align: left;
  transition: 0.3s;
}
.article__aside ol.navigation li button:hover {
  color: #5273ef;
}
.article__aside ol.navigation li.active button {
  color: #060028;
}
.article__aside-banner {
  background: center/cover no-repeat url("/resources/img/blog/new/aside-bg.svg"), #060028;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #CBD1DD;
}
.article__aside-banner .title {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.article__aside-banner .title b {
  color: #B682F8;
}
.article__aside-banner .btn {
  width: 100%;
  border-radius: 100px;
  padding: 11px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #060028;
  transition: 0.3s;
}
.article__aside-banner .btn:hover {
  background: #5273ef;
  color: #fff;
}
.article__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 63px;
}
.article__actions h3 {
  font: 500 18px/20px "Figtree";
  color: #060028;
  margin: 0 0 12px;
}
.article__actions-rate .box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.article__actions-rate ul {
  margin: 0 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.article__actions-rate ul li {
  width: 22px;
  height: 22px;
  margin: 0 12px 0 0;
  padding: 0;
  background: center/contain no-repeat url("/resources/img/blog/new/rate-icon.svg");
  cursor: pointer;
  transition: 0.3s;
}
.article__actions-rate ul li::before {
  content: none;
  display: none;
}
.article__actions-rate ul li:last-child {
  margin: 0;
}
.article__actions-rate ul li.fill, .article__actions-rate ul li.fill-2 {
  background: center/contain no-repeat url("/resources/img/blog/new/rate-icon-filled.svg");
  transition: 0.3s;
}
.article__actions-rate .data {
  color: #9CA1AA;
  font: 400 12px/1.3 "Figtree";
}
.article__actions-share h3 {
  text-align: right;
  margin-bottom: 20px;
}
.article__actions-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article__actions-share ul li {
  margin: 0 12px 0 0;
  padding: 0;
}
.article__actions-share ul li::before {
  content: none;
  display: none;
}
.article__actions-share ul li a, .article__actions-share ul li a:hover {
  border: none;
}
.article__actions-share ul li:last-child {
  margin: 0;
}
.article__actions-share ul li a {
  font-size: 0;
  display: flex;
}
.article__actions-share ul li a svg path {
  transition: 0.3s;
}
.article__actions-share ul li a.fb:hover svg path:nth-child(1) {
  fill: #3b5998;
  transition: 0.3s;
}
.article__actions-share ul li a.fb:hover svg path:nth-child(2) {
  fill: #fff;
  transition: 0.3s;
}
.article__actions-share ul li a.in:hover svg path:nth-child(1) {
  fill: #0e76a8;
  transition: 0.3s;
}
.article__actions-share ul li a.in:hover svg path:nth-child(2) {
  fill: #fff;
  transition: 0.3s;
}
.article__actions-share ul li a.tw:hover .path-bg {
  fill: #000;
  transition: 0.3s;
}
.article__actions-share ul li a.tw:hover .path-icon {
  fill: #fff;
  transition: 0.3s;
}
.article__actions-share ul li a.youtube:hover svg path:nth-child(1) {
  fill: #FF0000;
  transition: 0.3s;
}
.article__actions-share ul li a.youtube:hover svg path:nth-child(2) {
  fill: #fff;
  transition: 0.3s;
}

.blog-cta,
.cta {
  background: center/100% 100% no-repeat url("/resources/img/blog/new/cta-bg.svg"), #060028;
  padding: 40px;
  text-align: center;
  margin: 63px 0 0;
  border-radius: 16px;
}
.blog-cta h3.title,
.cta h3.title {
  font: 600 28px/35px "Jokker";
  color: #fff;
  margin: 0 0 12px;
}
.blog-cta p.text, .blog-cta .blog-cta__text,
.cta p.text,
.cta .blog-cta__text {
  color: #fff;
  margin: 0;
}
.blog-cta p.text b, .blog-cta p.text strong, .blog-cta .blog-cta__text b, .blog-cta .blog-cta__text strong,
.cta p.text b,
.cta p.text strong,
.cta .blog-cta__text b,
.cta .blog-cta__text strong {
  color: #FFD964;
}
.blog-cta a.btn, .blog-cta a.btn:visited, .blog-cta .blog-cta__btn,
.cta a.btn,
.cta a.btn:visited,
.cta .blog-cta__btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 100px;
  background: #fff;
  color: #060028 !important;
  font: 600 16px/20px "Figtree";
  margin: 24px 0 0;
  border: none;
  transition: 0.3s;
}
.blog-cta a.btn:hover, .blog-cta a.btn:visited:hover, .blog-cta .blog-cta__btn:hover,
.cta a.btn:hover,
.cta a.btn:visited:hover,
.cta .blog-cta__btn:hover {
  border: none;
  color: #fff !important;
  background: #5273ef;
  transition: 0.3s;
}

.article .faq {
  margin-top: 20px;
}
.article .faq li {
  padding: 0;
  margin: 0;
  border-bottom: #e0e4ed 2px solid;
}
.article .faq li, .article .faq li:first-child {
  border-top: 0;
  border-bottom: 0;
  border-top: #e0e4ed 2px solid;
}
.article .faq li::before {
  display: none;
}
.article .faq li.show .quest::after {
  background: url("/resources/img/blog/minus.svg") center center no-repeat;
}
.article .faq li.show .ans {
  padding-bottom: 24px;
  transition: max-height 0.7s linear;
}
.article .faq li.show .ans p:first-child {
  margin: 0;
}
.article .faq li ul {
  list-style: disc;
  margin: 8px 0 0 24px;
}
.article .faq li ul li:nth-child(1n) {
  border: none;
}
.article .faq .quest {
  position: relative;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  transition: all 275ms ease;
}
.article .faq .quest, .article .faq .quest h3 {
  color: #060028;
  font-family: "Figtree";
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
}
.article .faq .quest::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 24px;
  height: 24px;
  background: url("/resources/img/blog/plus.svg") center center no-repeat;
  transition: all 275ms ease;
}
.article .faq .ans {
  padding-bottom: 24px;
  display: none;
}
.article .faq .ans p {
  margin-top: 16px;
}
.article .faq .ans, .article .faq .ans p {
  color: #2c2d31;
}
.article .faq .ans, .article .faq .ans p, .article .faq .ans a {
  font: 400 18px/28px "Figtree";
}
.article .faq .ans:first-child, .article .faq .ans p:first-child, .article .faq .ans a:first-child {
  margin: 0;
}
.article .faq .ans .faq__list {
  margin-top: 8px;
  margin-left: 14px;
}
.article .faq .ans .faq__list li {
  border: none;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.article .faq .ans .faq__list li:last-child {
  margin: 0;
}
.article .faq .ans .faq__list li::before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5273ef;
}

.posts__article-picture {
  display: flex;
  position: relative;
}
.posts__article-picture img {
  border-radius: 12px;
  height: auto;
}
.posts__article-picture img.preview {
  z-index: 1;
  transition: 0.3s ease;
}
.posts__article-picture img.bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.posts__article-title, .posts__article-title:visited {
  color: #060028;
}
.posts__article-title h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
.posts__article-date {
  color: #696E77;
  font-size: 14px;
  margin-bottom: 12px;
}
.posts__article-date span::before {
  content: " | ";
}
.posts__article-text p {
  font-size: 16px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.popular__inner {
  padding-bottom: 144px;
}
.popular__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.popular__top-title {
  font-size: 44px;
  line-height: 1.2;
  font-family: "Jokker";
}
.popular__top-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.popular__top-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  background: center/contain no-repeat url("/resources/img/blog/new/slider-btn.svg");
  font-size: 0;
  border: none;
  transition: 0.3s;
}
.popular__top-btn.prev-btn {
  rotate: 180deg;
}
.popular__top-btn:hover {
  background-image: url("/resources/img/blog/new/slider-btn-hover.svg");
}
.popular__box {
  margin: 0 -12px;
}
.popular__slider {
  display: flex;
  overflow: hidden;
}
.popular__slider .posts__article {
  margin: 0 12px;
  min-width: 360px;
}
.popular__slider .slick-slide .posts__article {
  min-width: unset;
}

.article .quote {
  margin: 20px auto 40px;
  position: relative;
  border-radius: 10px;
}
.article .quote__inner {
  padding: 24px;
}
.article .quote__text {
  padding: 0;
  margin: 0;
  font: 400 18px/28px "Figtree";
  color: #2C2D31;
}
.article .quote__author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}
.article .quote__author-text {
  margin-right: 24px;
}
.article .quote__author .name, .article .quote__author .name a {
  font: 600 24px/26px "Figtree";
  color: #2C2C2C;
  margin-bottom: 8px;
  border: none;
}
.article .quote__author .pos {
  font: 400 16px/18px "Figtree";
  color: #737579;
}
.article .quote__author-img {
  min-width: 112px;
  min-height: 108px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.article .quote__author-img img {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.article .quote svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.article a.article-banner {
  display: block;
  margin: 32px 0 0;
}
.article a.article-banner, .article a.article-banner:hover, .article a.article-banner:visited, .article a.article-banner:visited:hover {
  border: none;
}
.article a.article-banner img {
  width: 100%;
  height: auto;
  margin: 0;
}
.article a.article-banner .article-banner-mobile {
  display: none;
}

.article .code {
  margin-top: 20px;
  background: #F1F2F8;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.article .code pre {
  display: block;
  position: relative;
  box-sizing: border-box;
  overflow-x: auto;
  padding: 8px 16px;
  color: #2C2D31;
}
.article .code pre code {
  font-family: "FiraCode";
  font-size: 14px;
  line-height: 1.8;
}

.article .videoWrapper {
  position: relative;
  margin-top: 30px;
  padding-top: 56.2%;
  height: 0;
}
.article .videoWrapper iframe,
.article .videoWrapper .iframe-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article .terms {
  margin-top: 80px;
}
.article .terms__title {
  font: 600 32px/44px "Jokker";
  margin-bottom: 24px;
}
.article .terms__box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.article .terms__item {
  font: 600 16px/24px "Figtree";
  background: #F5F6F8;
  border-radius: 40px;
  padding: 16px 48px;
  transition: 0.3s;
}
.article .terms__item, .article .terms__item:visited {
  color: #060028 !important;
}
.article .terms__item:hover, .article .terms__item:visited:hover {
  background: #5273ef;
  color: #fff !important;
  border: none !important;
  transition: 0.3s;
}

.article .billboard {
  margin-top: 32px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #9BA5B9;
}
.article .billboard__title:nth-child(1n) {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 4px;
}
.article .billboard__text {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.article .billboard__text a {
  font-weight: 700;
}
.article .billboard__btn, .article .billboard__btn:visited {
  border: none;
  background: #060028;
  color: #fff !important;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 40px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s;
}
.article .billboard__btn:hover, .article .billboard__btn:hover:visited {
  border: none;
  background: #5273ef;
  color: #fff !important;
  transition: 0.25s;
}
.article .banner {
  background: center/100% 100% no-repeat url("/resources/img/blog/new/cta-bg.svg"), #060028;
  padding: 32px 16px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.article .banner__inner {
  position: relative;
  z-index: 1;
}
.article .banner__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto 24px;
  color: #fff;
  max-width: 600px;
  text-wrap: balance;
}
.article .banner__title b {
  font-weight: 700;
}
.article .banner__title:has(+ .banner__text) {
  margin-bottom: 8px;
}
.article .banner__text {
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.article .banner__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(90deg, rgba(6, 0, 40, 0.3) 0%, rgba(82, 115, 239, 0.3) 50.39%, rgba(6, 0, 40, 0.3) 100%);
  width: 100%;
  padding: 12px 0;
  margin-bottom: 24px;
}
.article .banner__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 0;
  margin: 0;
}
.article .banner__list li::before {
  display: none;
}
.article .banner__list li svg {
  width: 16px;
}
.article .banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.article .banner__btns a {
  margin: 0 !important;
}
.article .banner__btn {
  cursor: pointer;
  display: table;
  padding: 8px 20px;
  font-size: 16px;
  margin: 0 auto;
  border-radius: 100px;
  background: #fff !important;
  border: 2px solid #fff;
  font-weight: 700;
  transition: 0.3s;
}
.article .banner__btn, .article .banner__btn:visited {
  color: #060028 !important;
}
.article .banner__btn-border, .article .banner__btn-border:visited {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}
.article .banner__btn:hover, .article .banner__btn:visited:hover {
  background: #5273ef !important;
  color: #fff !important;
  border: 2px solid #5273ef !important;
  transition: 0.3s;
}
.article .banner__icon {
  position: absolute;
}

.form-title {
  margin: 0 0 16px;
}

.article form:not(.getintouch-popup form) {
  padding: 0;
  max-width: 336px;
}
.article form:not(.getintouch-popup form) label {
  margin: 0;
  padding: 0;
}
.article form:not(.getintouch-popup form) .consent {
  color: #060028;
  margin: 8px auto !important;
  padding: 0 !important;
  width: 100%;
  text-align: center;
  max-width: 305px;
}
.article form:not(.getintouch-popup form) .consent, .article form:not(.getintouch-popup form) .consent a {
  font: 400 12px/17px "Figtree";
}
.article form:not(.getintouch-popup form) .consent a {
  color: #5273ef;
  margin: 0;
}
.article form:not(.getintouch-popup form) span.validateMessage {
  color: #ee6660;
  font: 400 12px/14px "Figtree";
  position: absolute;
  left: 0;
  bottom: -16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-out;
}
.article form:not(.getintouch-popup form) label.invalid span.validateMessage {
  pointer-events: painted;
  opacity: 1;
  transition: all 0.2s ease-out;
}
.article form:not(.getintouch-popup form) span.thnx {
  display: none;
  font: 400 16px/24px "Figtree";
}
.article form:not(.getintouch-popup form) label {
  position: relative;
  font-size: 0;
  transition: 0.3s;
}
.article form:not(.getintouch-popup form) label.invalid input[type=text], .article form:not(.getintouch-popup form) input[type=text], .article form:not(.getintouch-popup form) input[type=text]:focus, .article form:not(.getintouch-popup form) input[type=text]:hover,
.article form:not(.getintouch-popup form) label.invalid input[type=email], .article form:not(.getintouch-popup form) input[type=email], .article form:not(.getintouch-popup form) input[type=email]:focus, .article form:not(.getintouch-popup form) input[type=email]:hover {
  border: 1px solid #9BA5B9;
  border-radius: 48px;
  background: #fff;
  padding: 13px 54px 13px 20px;
  font: 400 16px/24px "Figtree";
  color: #000;
  box-shadow: none;
  height: 52px;
}
.article form:not(.getintouch-popup form) input[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0;
  background: center/24px no-repeat url("/resources/img/footer/footer-input-arrow.svg"), #060028;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
.article form:not(.getintouch-popup form) input[type=submit]:hover {
  background: center/24px no-repeat url("/resources/img/footer/footer-input-arrow.svg"), #5273ef;
  transition: 0.3s;
}

.article .newsletter {
  background: #060028;
  padding: 40px 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.article .newsletter__title {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Jokker";
  margin: 0;
  text-align: center;
}
.article .newsletter__title strong {
  color: #56BE87;
}
.article .newsletter__form {
  border: 1px solid #5273EF;
  background: #5273EF1A;
  border-radius: 100px;
}
.article .newsletter__form label.invalid input[type=email],
.article .newsletter__form input[type=email] {
  color: #fff;
  padding: 16px 148px 16px 20px;
  background: none;
}
.article .newsletter__form label.invalid input[type=email]::placeholder,
.article .newsletter__form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.article .newsletter__form label.invalid input[type=email]:hover, .article .newsletter__form label.invalid input[type=email]:focus,
.article .newsletter__form input[type=email]:hover,
.article .newsletter__form input[type=email]:focus {
  background: none;
  color: #fff;
}
.article .newsletter__form input[type=submit] {
  padding: 16px 24px;
  border-radius: 100px;
  background: #FFD964;
  color: #060028;
  font-size: 18px;
  width: auto;
  height: auto;
  right: 0;
  transition: 0.3s ease;
}
.article .newsletter__form input[type=submit]:hover {
  background: #5273ef;
  color: #fff;
}
.article .newsletter__form input[type=submit].submited {
  color: #fff;
  background: #56BE87;
  pointer-events: none;
}
.article .newsletter__form label .validateMessage {
  bottom: -14px;
}

@media (max-width: 1023px) {
  .popup-banner {
    display: block;
    inset: unset;
    left: -100%;
    bottom: 40px;
    background: transparent;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
  }
  .popup-banner.active {
    left: 16px;
  }
  .popup-banner__body {
    min-height: auto;
    display: block;
  }
  .popup-banner__area {
    pointer-events: none;
  }
  .popup-banner__content {
    max-width: 343px;
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
  }
  .popup-banner__content-close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    z-index: 1;
  }
  .popup-banner__content-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 308px;
    border-radius: 16px 16px 0 0;
  }
  .popup-banner__content-img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .popup-banner__info {
    padding: 24px 16px 14px;
    background: #fff;
  }
  .popup-banner__info-title {
    font-size: 28px;
    line-height: 35px;
    margin: 0 0 12px;
    max-width: 290px;
  }
  .popup-banner__info-text {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 24px;
  }
  .popup-banner__info-text br {
    display: none;
  }
  .popup-banner__info-btn {
    width: 100%;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }
  .breadcrumbs__list {
    margin: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .article__inner {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .article__aside {
    max-width: 100%;
    position: relative;
    top: auto;
    margin: 0 0 64px;
  }
  .article__aside .contents {
    margin-bottom: 32px;
  }
  .article__aside ol.navigation {
    max-height: 100%;
  }
  .article__aside ol.navigation li.active::before {
    background: #AEB1BE;
  }
  .article__aside ol.navigation li.active a,
.article__aside ol.navigation li.active a:visited,
.article__aside ol.navigation li.active button {
    color: #858C99;
  }
  .article__aside .contents {
    position: relative;
  }
  .article__aside .contents.active .contents-title::before {
    rotate: 180deg;
  }
  .article__aside .contents.active ol.navigation {
    max-height: 800px;
    box-shadow: -15px -10px 76px rgba(98, 109, 128, 0.14);
  }
  .article__aside .contents-title {
    font-weight: 400;
    width: 100%;
    border-radius: 100px;
    border: 1px solid #9CA1AA;
    padding: 12px 32px 12px 16px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    color: #26282B;
    background: #fff;
    text-align: left;
  }
  .article__aside .contents-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    translate: 0 -50%;
    width: 20px;
    height: 20px;
    background: center/contain no-repeat url("/resources/img/blog/new/arrow-down-icon.svg");
    transition: 0.3s ease;
  }
  .article__aside ol.navigation {
    z-index: 10;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    gap: 0;
    transition: all 0.5s ease;
  }
  .article__aside ol.navigation li {
    display: block;
    width: 100%;
  }
  .article__aside ol.navigation li button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: none;
  }
  .article__aside-banner {
    background-image: url("/resources/img/blog/new/aside-tab-bg.svg");
  }
  .article__aside-banner .title {
    text-align: center;
  }
  .article__aside-banner .btn {
    margin: 0 auto;
    width: auto;
    padding: 12px 24px;
  }
  .article__content {
    max-width: 100%;
  }
  .article__content .table {
    max-width: 100%;
  }
  .article__progressbar {
    top: 0;
  }
  .article__content-shadow {
    display: none;
  }

  .popular__inner {
    padding: 0 0 48px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .article .banner__list {
    flex-direction: column;
    align-items: center;
  }
  .article .newsletter {
    padding: 40px 16px;
  }
}
@media (max-width: 639px) {
  .article__inner {
    padding: 48px 0 64px;
  }
  .article__aside {
    margin: 0 0 48px;
  }
  .article__aside-banner {
    padding: 32px;
    background-image: url("/resources/img/blog/new/aside-mob-bg.svg");
  }
  .article__content ul li, .article__content ol li {
    font: 400 16px/28px "Figtree";
  }
  .article__content p.description {
    font: 500 20px/33px "Figtree";
  }
  .article__content p, .article__content ul li, .article__content ol li, .article__content span, .article__content div {
    font: 400 16px/28px "Figtree";
  }
  .article__content p {
    margin: 24px 0 0;
  }
  .article__content h2 {
    font: 600 24px/34px "Figtree";
    margin: 32px 0 0;
  }
  .article__content .bold {
    font-weight: 600;
  }
  .article__content .italic {
    font-style: italic;
  }
  .article__content ol {
    padding: 0 0 0 26px;
  }
  .article__content ol li {
    padding: 0 0 0 8px;
  }
  .article__content ul li {
    padding: 0 0 0 26px;
  }
  .article__content ul li::before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
  .article__content .cta {
    margin: 48px 0 0;
    padding: 48px 16px;
  }
  .article__content .cta br {
    display: none;
  }
  .article__actions {
    flex-direction: column;
    justify-content: center;
  }
  .article__actions h3 {
    text-align: center;
    margin: 0 0 12px;
  }
  .article__actions-rate {
    margin-bottom: 48px;
  }
  .article__actions-rate .box {
    flex-direction: column;
  }
  .article__actions-rate .data br {
    display: none;
  }
  .article__actions-rate ul {
    margin: 0 0 12px;
  }
  .article__actions-share ul li {
    padding: 0;
  }
  .article__actions-share ul li::before {
    display: none;
  }

  .popular__inner {
    padding: 0 0 40px;
  }
  .popular__top-arrows {
    display: none;
  }
  .popular__box {
    margin: 0;
    flex-direction: column;
  }
  .popular__box-item {
    margin: 0 0 32px;
    max-width: 100%;
  }

  .article .quote__author-text {
    margin-right: 12px;
  }
  .article .quote__author .name {
    font: 600 22px/26px "Figtree";
    margin-bottom: 4px;
  }
  .article .quote__author-img {
    min-width: 80px;
    min-height: 80px;
  }

  .article a.article-banner .article-banner-mobile {
    display: block;
  }
  .article a.article-banner .article-banner-pc {
    display: none;
  }

  .article .terms {
    margin-top: 48px;
  }
  .article .terms__box {
    gap: 16px 12px;
  }
  .article .terms__title {
    font-size: 24px;
  }
  .article .terms__item {
    padding: 12px 32px;
  }

  .article .billboard {
    flex-direction: column;
    padding: 16px;
  }
  .article .billboard__text br {
    display: none;
  }
  .article .billboard__btn {
    width: 100%;
  }
  .article .banner {
    padding: 24px 16px 16px;
  }
  .article .banner__title {
    font-size: 18px;
  }
  .article .banner__title br {
    display: none;
  }
  .article .banner__text {
    margin-bottom: 16px;
    max-width: 450px;
  }
  .article .banner__text br {
    display: none;
  }
  .article .banner__btns {
    flex-direction: column;
  }
  .article .banner__btn {
    width: 100%;
  }
  .article .banner__icon {
    display: none;
  }

  .popular__top {
    margin-bottom: 32px;
  }
  .popular__top-title {
    font-size: 34px;
  }
  .popular__top-btns {
    display: none;
  }
  .popular__slider {
    flex-direction: column;
    gap: 34px;
  }
  .popular__slider .posts__article {
    margin: 0;
    min-width: auto;
  }
}

/*# sourceMappingURL=blog-article.css.map */
