.static-section {
  padding-top: 80px;
  padding-bottom: 120px;
}

.static-section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.static-section .blog-container {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

.static-section__left-content {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.static-section__left-content .social-box {
  margin-top: 48px;
}

.social-box {
  border-top: 1px solid #100A53;
  padding-top: 32px;
}

.social-box.-sticky {
  position: sticky;
  top: 88px;
}

.title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-box .title {
  text-align: center;
}

.post-suptitle {
  margin-bottom: 16px;
}

.post-subtitle {
  text-align: center;
  max-width: 580px;
  margin: 16px auto 0;
}

.post-date-box {
  margin-top: 32px;
}

.post-suptitle,
.post-date-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.post-date-box p:first-child {
  text-transform: capitalize;
}

.post-suptitle a,
.post-date-box p {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 150%;
  color: #7A788F;
}

.post-suptitle a.-gradient,
.post-date-box p.-gradient {
  display: inline-block;
}

.post-suptitle a {
  position: relative;
  margin-right: 20px;
}

.post-suptitle a:last-child {
  margin-right: 0;
}

.post-suptitle a:after,
.post-date-box p:after {
  content: '·';
  display: block;

  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;

  pointer-events: none;
}

.post-suptitle a:after {
  position: absolute;
  right: -15px;
}

.post-suptitle a:last-child:after,
.post-date-box p:last-child:after {
  display: none;
}

.post-date-box p:after {
  margin: 0 4px;
}

.post-suptitle p,
.post-suptitle a {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-date-box p {
  letter-spacing: 0.02em;
}

.social-box .text {
  display: none;
}

.social-list {
  display: flex;
  flex-direction: row;
  margin-bottom: -16px;
}

.social-list .footer__social {
  margin-right: 24px;
  border-radius: 0;
  padding: 0;

  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: initial;
}
.social-list .footer__social::before {
  display: none !important;
}
.social-list .footer__social-icon {
  background-color: #100A52;
  border-radius: 4px;
  padding: 4px;

  width:  28px;
  height: 28px;
}
.social-list .footer__social-label {
  margin-left: 8px;
}

.static-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 64px;
}

.static-blog {
  width: 580px;
  margin: 0 auto;
}

.static-first-paragraph p {
  margin-top: 16px;
}

.static-first-paragraph p:first-child {
  margin-top: 0;
}

/* editor */

.blockquote-editor,
.image-editor,
.video-editor,
.table-editor,
.editor {
  margin-top: 40px;
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  margin-top: 40px;

  font-family: 'Open Sauce Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #100A52;
}

.editor h2 {
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.01em;
}

.editor h3 {
  font-size: 32px;
  line-height: 112%;
}

.editor h4,
.editor h5 .editor h6 {
  font-size: 24px;
  line-height: 135%;
}

.editor>h1:first-child,
.editor>h2:first-child,
.editor>h3:first-child,
.editor>h4:first-child,
.editor>h5:first-child,
.editor>h6:first-child,
.editor>p:first-child {
  margin-top: 0;
}

.editor p {
  margin-top: 24px;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #100A52;
}

.editor.-small-space p {
  margin-top: 16px;
}

.editor strong {
  font-family: inherit;
  font-style: inherit;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.editor i,
.editor em {
  font-family: 'Open Sauce Sans', sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
}

.editor a {
  color: #4290eb;
}
.editor a * {
  color: inherit;
}

.editor a.flush,
.editor .flush a {
  color: inherit;
}
.editor a.flush:hover,
.editor .flush a:hover {
  color: #4290eb;
}


.editor ol {
  counter-reset: item;
}

.editor ul li,
.editor ol li {
  position: relative;
  padding-left: 24px;
  margin-top: 16px;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #100A52;
}

.editor ol li:before {
  content: counters(item, ".", decimal) ". ";
  counter-increment: item;
  position: absolute;
  left: 0;
  width: 24px;
  text-align: center;
}

.editor ol li li:before {
  width: 32px;
}

.editor ol ol li {
  padding-left: 32px;
}

.editor ul li:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;

  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #100A52;
  background-color: #100A52;
}

.editor ul ul li:before {
  background-color: transparent;
}

/* image editor */

.image-editor img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-editor p,
.video-editor p,
.table-editor p {
  margin-top: 16px;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #7A788F;
}

/* blockquote editor */

.blockquote-editor .quotes {
  position: relative;
  top: -4px;
  display: inline-block;
  margin-right: 72px;
}

.blockquote-editor p {
  font-family: 'Open Sauce Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 112%;
  color: #100A52;
}

.blockquote-editor .user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 16px;
}

.blockquote-editor .user-img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.blockquote-editor .user-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blockquote-editor .user-data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.blockquote-editor .user-data p {
  margin-top: 0;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #100A52;
}

.blockquote-editor .user-data p:after {
  content: '·';
  margin: 0 4px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #7A788F;
}

.blockquote-editor .user-data p:last-child:after {
  display: none;
}

/* video editor */

.video-editor video,
.video-editor iframe {
  display: block;
  height: 300px;
  border-radius: 8px;
}

/* table editor */

.editor+.table-editor {
  margin-top: 24px;
}

.table-editor table {
  width: 100%;
  border-collapse: collapse;
}

.table-editor tr:first-child {
  background-color: #7A788F;
  text-align: left;
  padding: 12px;
}

.table-editor tr:nth-child(2n+3) {
  background-color: #F5F5FA;
}

.table-editor th {
  padding: 8px 16px 8px 0;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.table-editor td {
  padding: 12px 16px 12px 0;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #100A52;
}

.table-editor td:first-child,
.table-editor th:first-child {
  padding-left: 16px;
}

/* table editor - version #2 */

.table-editor.-v2 table {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.table-editor.-v2 tr:first-child {
  background-color: transparent;
  text-align: left;
}

.table-editor.-v2 tr:nth-child(2n+3) {
  background-color: transparent;
}

.table-editor.-v2 td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.table-editor.-v2 tr:last-child td {
  border: none;
}

.table-editor.-v2 th {
  color: #B3B2C2;
}

/* subscribe block */

.book-form-url {
  display: none;
}

.subscribe-block {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 780px;
  padding: 40px;
  margin: 64px 0 64px -100px;
  border-radius: 8px;
}

.subscribe-block .thank-you-block {
  width: 100%;
  margin-left: 24px;
}

.subscribe-block .thank-you-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subscribe-block .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.subscribe-block__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 236px;
}

.subscribe-block__left-text .text {
  margin-top: 4px;
  font-size: 15px;
}

.subscribe-block .footer__subscribe-form {
  width: 320px;
  margin-top: 0;
}

.subscribe-block .footer__subscribe-form .input-block {
  margin-bottom: 0;
}

.subscribe-block .input-box.-subscribe .input {
  color: #100A52;
  border-color: #E1E1EB;
  background-color: transparent;
}

.subscribe-block .input-box.-subscribe .input:focus {
  background-color: #fff;
  border-color: #4290EB;
}

.subscribe-block .input-box.-subscribe.error .input:focus {
  border-color: #EB5042;
}

.subscribe-block .input-box.-subscribe .input::placeholder {
  color: #7A788F;
}

.subscribe-block .input-subscribe.button input {
  color: #100A52;
}

.subscribe-block .input-subscribe.button .button__arrow path {
  fill: #100A52;
}

.subscribe-block:last-child {
  margin-bottom: 0;
}

.blognav-box {
  font-weight: 500;
}

.blognav-box * {
  font-weight: inherit;
}

.blognav-box::before {
  content: '';

  margin:      32px auto 0;
  border-top:  1px solid #100A53;
  padding-top: 48px;

  display:   block;
  max-width: 580px;
}

.blognav-links {
  display:         flex;
  flex-flow:       row nowrap;
  justify-content: space-between;
}

.blognav-box .button {
  display: inline-flex;
}

.blognav-prev,
.blognav-next {
  flex: 0 0 25%;
}

.blognav-next {
  text-align: right;
}

.blognav-prev .icon {
  order: -1;
  transform: scale(-1, 1);
  margin-left: 0;
  margin-right: 4px;
}

@media screen and (min-width: 1000px) {
  .subscribe-block .input-box.-subscribe .input:hover {
    border-color: #4290EB;
  }
}

@media screen and (max-width: 1279px) {
  .static-section {
    padding-top: 68px;
  }

  .static-section__left-content {
    width: 100%;
  }

  .static-section__left-content .social-box {
    display: block;
    margin-top: 48px;
  }

  .social-box.-sticky {
    display: none;
  }

  .static-blog {
    margin: 0 auto;
  }

  .title-box {
    flex-direction: column;
  }

  .post-subtitle {
    max-width: none;
    font-size: 16px;
    line-height: 150%;
  }

  .post-date-box {
    margin-top: 24px;
  }

  .social-box {
    margin-top: 48px;
  }

  .social-box .text {
    display: block;
    margin-bottom: 12px;
  }

  .social-list {
    flex-direction: row;
    margin-bottom: 0;
    margin-right: -16px;
  }

  .social-list .footer__social {
    margin-right: 24px;
    margin-bottom: 0;
  }

  .static-content {
    display: block;
    margin-top: 40px;
  }

  .static-first-paragraph {
    font-size: 18px;
    line-height: 150%;
  }

  /* editor */

  .editor h2 {
    font-size: 32px;
    line-height: 130%;
  }

  .editor h3 {
    font-size: 24px;
    line-height: 140%;
  }

  .editor h4,
  .editor h5 .editor h6 {
    font-size: 18px;
    line-height: 135%;
  }

  .editor ul li:before {
    width: 6px;
    height: 6px;
  }

  /* blockquote editor */

  .blockquote-editor p {
    font-size: 24px;
    line-height: 112%;
  }

  .blockquote-editor .quotes {
    top: -2px;
    margin-right: 42px;
    width: 18px;
    height: 18px;
  }

  /* video editor */

  .video-editor,
  .image-editor {
    padding-bottom: 0;
  }

  /* subscribe block */

  .subscribe-block {
    width: 704px;
    padding: 32px 20px;
    margin: 48px 0 48px -62px;
  }

  .subscribe-block__left {
    width: 212px;
  }

  .subscribe-block .footer__subscribe-form {
    width: 316px;
  }

  .subscribe-block__left-text .text {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 740px) {
  .static-section {
    padding-top: 48px;
  }

  .title-box .title {
    text-align: left;
  }

  .title-box .title br {
    display: none;
  }

  .static-blog {
    width: 100%;
  }

  .static-first-paragraph {
    font-size: 16px;
    line-height: 150%;
  }

  .post-subtitle {
    text-align: left;
    margin: 16px 0 0;
  }

  .post-suptitle,
  .post-date-box {
    justify-content: flex-start;
  }

  /* editor */

  .blockquote-editor,
  .image-editor,
  .video-editor,
  .table-editor,
  .editor {
    margin-top: 32px;
  }

  .editor h1,
  .editor h2,
  .editor h3,
  .editor h4,
  .editor h5,
  .editor h6 {
    margin-top: 32px;
  }

  .editor p {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .editor strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
  }

  .editor ul li,
  .editor ol li {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .editor ul li:before {
    top: 6px;
    width: 5px;
    height: 5px;
  }

  /* image editor */

  .image-editor p,
  .video-editor p,
  .table-editor p {
    margin-top: 8px;
  }

  /* blockquotes editor */

  .blockquote-editor .user-data {
    display: block;
  }

  .blockquote-editor .user-data p:after {
    display: none;
  }

  /* video editor */

  .video-editor video,
  .video-editor iframe {
    height: 173px;
  }

  /* table editor */
  .editor+.table-editor {
    margin-top: 32px;
  }

  .table-editor th {
    padding: 8px 12px 8px 0;

    font-size: 11px;
    line-height: 150%;
    letter-spacing: 0.1em;
  }

  .table-editor td {
    padding: 12px 12px 12px 0;

    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .table-editor td:first-child,
  .table-editor th:first-child {
    padding-left: 12px;
  }

  /* subscribe block */
  .subscribe-block {
    flex-direction: column;
    justify-content: flex-start;
    width: 100vw;
    padding: 32px 20px 40px;
    margin-left: -20px;
  }

  .subscribe-block .thank-you-block {
    margin-left: 0;
    margin-top: 16px;
  }

  .subscribe-block__left-text {
    text-align: center;
  }

  .subscribe-block .thank-you-form {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-block__left,
  .subscribe-block .footer__subscribe-form {
    width: 100%;
  }

  .subscribe-block .footer__subscribe-form {
    margin-top: 24px;
  }

  .subscribe-block .thank-you-window {
    text-align: center;
  }

  .book-url-block .button {
    margin-top: 20px;
  }

  .blognav-links {
    margin: 0 -12px;
  }

  .blognav-prev,
  .blognav-next {
    flex-basis: auto;
    min-width: 48px;
  }

  .blognav-box .button {
    padding: 12px;
    min-width: 48px;
  }

  .blognav-prev .button > span,
  .blognav-next .button > span {
    display: none;
  }

  .blognav-prev .icon,
  .blognav-next .icon {
    margin: 2px 0;
  }
}