.container {
  padding: 0 31px;
}

@media (min-width: 992px) {
  .container {
    padding: 0 12px;
    max-width: 849px;
  }
}
#main {
  padding-top: 68px;
}
@media (min-width: 992px) {
  #main {
    padding-top: 168px;
  }
}

.breadcrumbs_wrapper .breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 7px 16px;
  background: #fff;
}
.breadcrumbs_wrapper .breadcrumbs li {
  display: inline-flex;
  margin-bottom: 1px;
}
.breadcrumbs_wrapper .breadcrumbs li a, .breadcrumbs_wrapper .breadcrumbs li span {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #7788B4;
}
.breadcrumbs_wrapper .breadcrumbs li a:hover, .breadcrumbs_wrapper .breadcrumbs li span:hover {
  color: #49598A;
}
.breadcrumbs_wrapper .breadcrumbs li span {
  color: #49598A;
}
.breadcrumbs_wrapper .breadcrumbs li a:after {
  content: "-";
  display: inline-block;
  color: #7788B4;
  margin: 0 6px;
}
.breadcrumbs_wrapper .breadcrumbs li:last-child a:after {
  display: none;
}
@media (min-width: 992px) {
  .breadcrumbs_wrapper {
    margin-bottom: 20px;
  }
  .breadcrumbs_wrapper .breadcrumbs {
    padding: 12px 19px;
  }
  .breadcrumbs_wrapper .breadcrumbs li a {
    font-size: 0.875rem;
  }
}

.page-details {
  display: block;
}
.page-details .inner_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 284px;
  padding-bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
}
.page-details .inner_wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, #000D33 20.51%, rgba(0, 13, 51, 0.3) 98.66%);
}
.page-details .inner_wrapper .page_title {
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.625rem;
  color: #FFFFFF;
  font-family: Fira Sans;
  padding: 0 25px;
  align-self: baseline;
}
.page-details .inner_wrapper .post_details {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  margin-bottom: 18px;
}
.page-details .inner_wrapper .post_details .published_date {
  display: inline-flex;
  flex: 0 0 40%;
  width: 40%;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
}
.page-details .inner_wrapper .post_details .post_author {
  display: inline-flex;
  flex: 0 0 60%;
  width: 60%;
  align-items: center;
}
.page-details .inner_wrapper .post_details .post_author .profile {
  margin-right: 8px;
}
.page-details .inner_wrapper .post_details .post_author .profile img {
  width: 38px;
  height: 38px;
  border-radius: 100%;
}
.page-details .inner_wrapper .post_details .post_author .details .name {
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 0.875rem;
}
.page-details .inner_wrapper .post_details .post_author .details .position {
  color: #fff;
  font-size: 0.75rem;
  line-height: 0.875rem;
}
.page-details .inner_wrapper .post_details + .social_icons {
  max-height: 0;
  opacity: 1;
  overflow: hidden;
  transition: all 0.6s ease;
}
.page-details .inner_wrapper .social_icons {
  display: flex;
  justify-self: center;
  align-self: center;
  flex: 100%;
  width: 100%;
  padding: 0 13px;
  list-style: none;
  position: relative;
  z-index: 1;
  top: 63px;
  margin-top: -63px;
}
.page-details .inner_wrapper .social_icons .social_inner_wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #EEF4F5;
}
.page-details .inner_wrapper .social_icons .icon {
  display: inline-flex;
  margin: 0 13px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  transition: all 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.page-details .inner_wrapper .social_icons .icon a img {
  transition: opacity 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon a img.hover {
  opacity: 0;
  width: 0;
  transition: opacity 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon a img.start {
  opacity: 1;
  width: auto;
  transition: opacity 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon:hover {
  background: #17cda9;
  transition: all 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon:hover img.hover {
  opacity: 1;
  width: auto;
  transition: opacity 0.6s ease;
}
.page-details .inner_wrapper .social_icons .icon:hover img.start {
  opacity: 0;
  width: 0;
  transition: opacity 0.6s ease;
}
.page-details .inner_wrapper .social_icons.active {
  max-height: 64px;
  opacity: 1;
  transition: all 0.6s ease;
}
.page-details .inner_wrapper .social_icons.mobile {
  position: absolute;
  top: auto;
  bottom: -42px;
  margin-top: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .page-details .inner_wrapper {
    min-height: 474px;
    padding: 39px 94px;
    margin: 0 auto;
	max-width: 800px;
  }
  .page-details .inner_wrapper:before {
    background: linear-gradient(41.25deg, rgba(42, 23, 253, 0.95) 24.6%, rgba(0, 13, 51, 0.285) 90.63%);
  }
  .page-details .inner_wrapper:after {
    content: "";
    display: block;
    width: 190px;
    height: 180px;
    background: url("../img/blog_decoration.png") no-repeat center;
    position: absolute;
    left: -70px;
    top: 31px;
  }
  .page-details .inner_wrapper .page_title {
    font-size: 2.5rem;
    line-height: 3rem;
    padding: 0;
  }
  .page-details .inner_wrapper .post_details {
    padding: 0;
    justify-content: flex-start;
  }
  .page-details .inner_wrapper .post_details .published_date {
    flex: 0 0 auto;
    width: auto;
    margin-right: 48px;
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .page-details .inner_wrapper .post_details .post_author {
    flex: 0 0 100%;
    width: auto;
  }
  .page-details .inner_wrapper .post_details .post_author .profile {
    margin-right: 12px;
  }
  .page-details .inner_wrapper .post_details .post_author .profile img {
    width: 50px;
    height: 50px;
  }
  .page-details .inner_wrapper .post_details .post_author .details {
    margin-right: 16px;
    max-width: 320px;
  }
  .page-details .inner_wrapper .post_details .post_author .details .name {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .page-details .inner_wrapper .post_details .post_author .details .position {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .page-details .inner_wrapper .social_icons {
    margin-top: 0;
    top: 0;
    width: auto;
    flex: auto;
  }
  .page-details .inner_wrapper .social_icons .icon {
    width: 36px;
    height: 36px;
    margin: 0 2.5px;
  }
}

.page-content {
  position: relative;
}
.page-content .inner_wrapper {
  padding: 72px 25px 60px;
  background: #fff;
  margin-bottom: 30px;
}
.page-content .inner_wrapper .editor_content_wrapper h2, .page-content .inner_wrapper .editor_content_wrapper h3, .page-content .inner_wrapper .editor_content_wrapper h4, .page-content .inner_wrapper .editor_content_wrapper h5 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: bold;
  text-align: left;
  color: #000000;
  font-family: Fira Sans;
  position: relative;
  margin: 0;
}
.page-content .inner_wrapper .editor_content_wrapper h3 {
  font-size: 1rem;
}
.page-content .inner_wrapper .editor_content_wrapper h4 {
  font-size: 1rem;
}
.page-content .inner_wrapper .editor_content_wrapper h5 {
  font-size: 1rem;
}
.page-content .inner_wrapper .editor_content_wrapper img {
  width: auto;
  max-width: 100%;
  margin-bottom: 30px;
}
.page-content .inner_wrapper .editor_content_wrapper iframe {
  width: 100%;
}
.page-content .inner_wrapper .content_wrapper, .page-content .inner_wrapper .editor_content_wrapper {
  background-color: #ffffff;
  margin-bottom: 30px;
}
.page-content .inner_wrapper .content_wrapper p, .page-content .inner_wrapper .content_wrapper span, .page-content .inner_wrapper .content_wrapper li, .page-content .inner_wrapper .content_wrapper a, .page-content .inner_wrapper .editor_content_wrapper p, .page-content .inner_wrapper .editor_content_wrapper span, .page-content .inner_wrapper .editor_content_wrapper li, .page-content .inner_wrapper .editor_content_wrapper a {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.59;
  color: #000D33;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}
.page-content .inner_wrapper .content_wrapper p, .page-content .inner_wrapper .editor_content_wrapper p {
  margin-bottom: 48px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  font-weight: 400;
}
.page-content .inner_wrapper .content_wrapper p:last-child, .page-content .inner_wrapper .editor_content_wrapper p:last-child {
  margin-bottom: 0;
}
.page-content .inner_wrapper .content_wrapper a, .page-content .inner_wrapper .editor_content_wrapper a {
  color: #2916FC;
}
.page-content .inner_wrapper .content_wrapper a:hover, .page-content .inner_wrapper .editor_content_wrapper a:hover {
  text-decoration: underline;
}
.page-content .inner_wrapper .images_wrapper {
  text-align: center;
  max-width: 1016px;
  margin-bottom: 30px;
}
.page-content .inner_wrapper .images_wrapper img {
  width: 100%;
  max-width: 100%;
}
.page-content .inner_wrapper .images_wrapper.multiple_images {
  overflow: hidden;
}
.page-content .inner_wrapper .images_wrapper.multiple_images .image_item {
  display: inline-block;
  float: left;
  width: 48.7%;
  margin-right: 2.5%;
}
.page-content .inner_wrapper .images_wrapper.multiple_images .image_item:nth-child(2n) {
  margin-right: 0;
}
.page-content .inner_wrapper .title_wrapper {
  margin-bottom: 16px;
}
.page-content .inner_wrapper .title_wrapper .title {
  font-size: 1.375rem;
  line-height: 1.625rem;
  font-weight: bold;
  text-align: left;
  color: #2916FC;
  font-family: Fira Sans;
  position: relative;
  margin: 0;
}
.page-content .inner_wrapper .title_wrapper.blue-wrapper {
  display: flex;
  align-items: center;
  background: #2916FC;
  width: 293px;
  padding: 17px 19px;
  margin: 55px 0 39px -25px;
}
.page-content .inner_wrapper .title_wrapper.blue-wrapper .title {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.625rem;
  text-align: left;
  margin: 0;
  font-weight: 400;
}
.page-content .inner_wrapper .title_wrapper h3.title {
  font-size: 1rem;
}
.page-content .inner_wrapper .title_wrapper h4.title {
  font-size: 1rem;
}
.page-content .inner_wrapper .title_wrapper h5.title {
  font-size: 1rem;
}
.page-content .inner_wrapper .table-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin-bottom: 66px;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.page-content .inner_wrapper .table-wrapper::-webkit-scrollbar {
  display: none;
}
.page-content .inner_wrapper .table-wrapper .table_arrow {
  display: none;
  float: right;
  width: 19px;
  height: 24px;
  background: url(../img/arrow-purple.svg) no-repeat center;
  cursor: pointer;
  transition: all 0.5s ease;
  position: absolute;
  right: 0;
  top: -5px;
}
.page-content .inner_wrapper .table-wrapper .table_arrow.back {
  right: -117%;
  transform: rotate(180deg);
  transition: all 0.5s ease;
}
.page-content .inner_wrapper .table-wrapper table {
  border-spacing: 7px 0;
  border-collapse: separate;
  margin-right: -7px;
  position: relative;
  left: -7px;
}
.page-content .inner_wrapper .table-wrapper table th {
  text-align: center;
  border: none;
  color: rgba(32, 0, 98, 0.55);
  font-size: 0.9375rem;
  line-height: 1.23;
  padding: 15px 21px;
  white-space: break-spaces;
}
.page-content .inner_wrapper .table-wrapper table td {
  padding: 15px 21px;
  text-align: center;
  border: none;
  color: #200062;
  font-size: 0.9375rem;
  line-height: 1.9;
  width: 135px;
  min-width: 135px;
}
.page-content .inner_wrapper .table-wrapper table tbody > tr:nth-child(even) > td {
  background-color: #f6f6f6;
}
.page-content .inner_wrapper .table-wrapper table tbody > tr:nth-child(odd) > td {
  background-color: #ffffff;
}
.page-content .inner_wrapper .table-wrapper.last-col-bold table th:last-child {
  color: #4310ae;
  font-weight: 700;
}
@media (min-width: 992px) {
  .page-content .inner_wrapper {
    width: 100%;
    display: block;
    padding: 70px 94px;
	max-width: 800px;
	margin: auto;
  }
  .page-content .inner_wrapper .title_wrapper {
    margin-top: 50px;
    margin-bottom: 32px;
  }
  .page-content .inner_wrapper .title_wrapper .title {
    font-size: 2.3125rem;
    line-height: 1.1;
    color: #2916FC;
    padding: 0;
  }
  .page-content .inner_wrapper .title_wrapper h3.title {
    font-size: 1.75rem;
  }
  .page-content .inner_wrapper .title_wrapper h3.title:before {
    top: 0;
  }
  .page-content .inner_wrapper .title_wrapper h4.title {
    font-size: 1.375rem;
  }
  .page-content .inner_wrapper .title_wrapper h4.title:before {
    top: 2px;
    height: 20px;
  }
  .page-content .inner_wrapper .title_wrapper.blue-wrapper {
    display: inline-flex;
    width: auto;
    padding: 27px 95px;
    margin: 55px 0 39px -94px;
  }
  .page-content .inner_wrapper .title_wrapper.blue-wrapper .title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 500;
  }
  .page-content .inner_wrapper .editor_content_wrapper h2, .page-content .inner_wrapper .editor_content_wrapper h3, .page-content .inner_wrapper .editor_content_wrapper h4, .page-content .inner_wrapper .editor_content_wrapper h5 {
    margin-top: 50px;
    margin-bottom: 32px;
    font-size: 2.3125rem;
    line-height: 1.1;
    color: #2916FC;
    padding: 0;
  }
  .page-content .inner_wrapper .editor_content_wrapper h3 {
    font-size: 1.75rem;
  }
  .page-content .inner_wrapper .editor_content_wrapper h4 {
    font-size: 1.375rem;
  }
  .page-content .inner_wrapper .editor_content_wrapper h5 {
    font-size: 1.25rem;
  }
  .page-content .inner_wrapper .content_wrapper p, .page-content .inner_wrapper .editor_content_wrapper p {
    margin-bottom: 35px;
    font-weight: 400;
  }
  .page-content .inner_wrapper .image_item {
    margin: 54px 0 60px;
  }
  .page-content .inner_wrapper .banner-wrapper {
    padding: 64px 72px 67px 68px;
  }
  .page-content .inner_wrapper .banner-wrapper:after {
    content: "";
    background: url("../img/BOX.svg") no-repeat right/cover;
    width: 85px;
    height: 86px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .page-content .inner_wrapper .banner-wrapper .line-wrapper .line.last .text {
    font-size: 1.6875rem;
  }
  .page-content .inner_wrapper .banner-wrapper .line-wrapper .line .text {
    font-size: 1.34375rem;
  }
  .page-content .inner_wrapper .table-wrapper {
    padding: 58px 0;
  }
  .page-content .inner_wrapper .table-wrapper .table_arrow {
    top: 30px;
  }
  .page-content .inner_wrapper .table-wrapper .table_arrow.back {
    right: -50px !important;
  }
}
@media (min-width: 1200px) {
  .page-content .inner_wrapper .table-wrapper {
    margin-bottom: 46px;
  }
  .page-content .inner_wrapper .table-wrapper .table_arrow {
    display: none;
  }
  .page-content .inner_wrapper .table-wrapper table td {
    min-width: 190px;
  }
}
.page-content .back-to-blog {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 60px;
}
.page-content .back-to-blog a {
  display: flex;
  background: #000D33;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.1875rem;
  align-items: center;
  color: #FFFFFF;
  padding: 15px 33px;
  transition: all 0.6s ease;
}
.page-content .back-to-blog a:before {
  content: "";
  display: inline-flex;
  width: 13px;
  height: 13px;
  background: url("../img/back-to-blog.svg") no-repeat center;
  margin-right: 20px;
}
.page-content .back-to-blog a:hover {
  background: #17CDA9;
  transition: all 0.6s ease;
}
.page-content .bottom_links {
  max-width: 1016px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 14px;
}
.page-content .bottom_links .back_link {
  display: inline-block;
  float: right;
  font-size: 18.5px;
  line-height: 1;
  font-weight: 300;
  text-align: left;
  color: #200062;
  transition: all 0.4s ease;
}
.page-content .bottom_links .back_link:hover {
  color: #1edcc1;
  transition: all 0.4s ease;
}
.page-content .bottom_links .back_link.back_to_blog {
  float: left;
}
.page-content .bottom_links .back_link.back_to_blog:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 15px;
  background: url(../img/arrow-blue.svg) no-repeat center;
  margin-right: 14px;
  transform: rotate(180deg);
  transition: all 0.4s ease;
}
.page-content .bottom_links .back_link.back_to_blog:hover:before {
  transition: all 0.4s ease;
  background: url(../img/arrow_green.svg) no-repeat center;
}
@media (min-width: 992px) {
  .page-content .bottom_links {
    padding: 0;
  }
}

.share_icons {
  margin-top: 68px;
}
.share_icons p {
  font-weight: 500;
  font-size: 26px;
  line-height: 31px;
  color: #000000;
  margin-bottom: 21px;
}
.share_icons .icons_list {
  display: flex;
  padding: 0;
  list-style: none;
}
.share_icons .icons_list li {
  display: inline-flex;
  margin-right: 10px;
}
.share_icons .icons_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #2A17FD;
  border-radius: 100%;
}
.share_icons .icons_list li a:hover {
  background: #000D33;
}

.table_of_content {
  display: none;
}
.table_of_content .table_links {
  padding: 0;
  list-style: none;
  max-width: 167px;
}
.table_of_content .table_links .link_item {
  display: block;
  width: 100%;
  font-family: Roboto;
  font-size: 0.96875rem;
  font-weight: normal;
  text-align: left;
  color: #200062;
  margin-bottom: 35px;
  cursor: pointer;
  position: relative;
}
.table_of_content .table_links .link_item:after {
  content: "";
  display: block;
  opacity: 0;
  height: 2px;
  width: 30px;
  background: #1fdcc1;
  margin-top: 10px;
  transition: opacity 0.8s ease;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.table_of_content .table_links .link_item:hover {
  color: #1edcc1;
  transition: opacity 0.8s ease;
}
.table_of_content .table_links .link_item.active:after {
  opacity: 1;
  transition: opacity 0.8s ease;
}
@media (min-width: 992px) {
  .table_of_content {
    width: 26%;
    display: inline-block;
    vertical-align: top;
  }
  .table_of_content .table_links {
    max-width: 100%;
  }
  .table_of_content .table_links .link_item {
    font-size: 1.03125rem;
  }
  .table_of_content.sticky {
    height: 100%;
  }
  .table_of_content.sticky .table_links {
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .table_of_content {
    max-width: 127px;
    position: absolute;
    width: auto;
    left: 5%;
    top: -10px;
  }
  .table_of_content.sticky {
    position: fixed;
    top: 160px;
    height: auto;
  }
  .table_of_content.sticky .table_links {
    position: static;
  }
}
@media (min-width: 1900px) {
  .table_of_content {
    max-width: 207px;
  }
  .table_of_content .table_links .link_item {
    font-size: 1.15625rem;
  }
}

.more-posts {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.more-posts .title_wrapper {
  margin-bottom: 19px;
}
.more-posts .title_wrapper .title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: left;
  color: #000000;
}
@media (min-width: 992px) {
  .more-posts {
    padding: 114px 0 0;
    margin-bottom: 150px;
  }
  .more-posts > .container {
    max-width: 1229px;
  }
  .more-posts .title_wrapper {
    margin-bottom: 45px;
  }
}

footer .back_to_top {
  right: 0px;
  bottom: 90px;
}
@media (min-width: 992px) {
  footer .back_to_top {
    right: 20px;
    bottom: 0;
  }
}

footer .footer_bottom {
  padding: 34px 44px 100px;
}

/*# sourceMappingURL=post.css.map */
